Coverage for /home/runner/.local/share/hatch/env/virtual/importnb/KA2AwMZG/test.interactive/lib/python3.9/site-packages/importnb/__main__.py: 88%

6 statements  

« prev     ^ index     » next       coverage.py v7.3.2, created at 2023-11-02 04:03 +0000

1from . import Notebook 1abcdef

2 

3 

4def main(argv=None): 1abcdef

5 """a convenience function for running importnb as an application""" 

6 

7 Notebook.load_argv(argv) 1abcdef

8 return 1abcdef

9 

10 

11if __name__ == "__main__": 11 ↛ exitline 11 didn't exit the module, because the condition on line 11 was never false1abcdef

12 main() 1abcdef