diff --git a/src/wily/decorators.py b/src/wily/decorators.py deleted file mode 100644 index a7e34c99..00000000 --- a/src/wily/decorators.py +++ /dev/null @@ -1,20 +0,0 @@ -""" -A module including decorators for wily. - -This API is not intended to be public and should not be consumed directly. - -""" - -from wily import __version__ - - -def add_version(f: function) -> function: - """ - Add the version of wily to the help heading. - - :param f: function to decorate - :return: decorated function - """ - doc = f.__doc__ if f.__doc__ else "" - f.__doc__ = "Version: " + __version__ + "\n\n" + doc - return f