Skip to content

Commit

Permalink
How do module docstrings work? who knows.
Browse files Browse the repository at this point in the history
  • Loading branch information
Isaak-Malers committed Feb 23, 2024
1 parent f51c5ba commit e4c28f7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
5 changes: 0 additions & 5 deletions CliFunction.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
import inspect
import sys
import re
"""
Provides the simplest possible wrapper for exposing python functions to be run on a command line!
Annotate python functions with the [@cli_function] decorator, and annotate the function fully with the builtin python tools.
The library will generate a man page for your file, and provide helpful error messages when arguments are not formatted correctly.
"""


class FunctionCliException(Exception):
Expand Down
5 changes: 5 additions & 0 deletions __init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"""
Provides the simplest possible wrapper for exposing python functions to be run on a command line!
Annotate python functions with the [@cli_function] decorator, and annotate the function fully with the builtin python tools.
The library will generate a man page for your file, and provide helpful error messages when arguments are not formatted correctly.
"""

0 comments on commit e4c28f7

Please sign in to comment.