Coverage for C:\Repos\leo-editor\leo\__init__.py: 100%
0 statements
« prev ^ index » next coverage.py v6.4, created at 2022-05-24 10:21 -0500
« prev ^ index » next coverage.py v6.4, created at 2022-05-24 10:21 -0500
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)