Coverage for C:\leo.repo\leo-editor\leo\__init__.py: 100%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1# This file makes the leo directory a package.
3# The function allows the following code to work::
4#
5# import leo
6# leo.run()
8def run(*args,**keys): # pragma: no cover
9 import pdb ; pdb = pdb.set_trace # type: ignore[assignment]
10 import leo.core.runLeo as runLeo
11 runLeo.run(*args,**keys)