Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1# (c) Stefan Countryman, 2019 

2 

3from . import __doc__ 

4from llama.cli import RecursiveCli 

5 

6cli = RecursiveCli.from_module('llama.dev.docs', description=__doc__) 

7main = cli.main # pylint: disable=invalid-name 

8get_parser = cli.get_parser 

9 

10 

11if __name__ == '__main__': 

12 main()