diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index c3e935a..a90b8cf 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -39,12 +39,12 @@ repos: - id: rst-inline-touching-normal - repo: https://github.com/psf/black - rev: 23.12.1 + rev: 24.1.1 hooks: - id: black - repo: https://github.com/PyCQA/bandit - rev: 1.7.6 + rev: 1.7.7 hooks: - id: bandit args: ["-c", "pyproject.toml"] diff --git a/reverse_argparse/__init__.py b/reverse_argparse/__init__.py index dc0943c..4c48a1b 100644 --- a/reverse_argparse/__init__.py +++ b/reverse_argparse/__init__.py @@ -4,6 +4,7 @@ Provide the :class:`ReverseArgumentParser` class and :func:`quote_arg_if_necessary` helper function. """ + from .reverse_argparse import ReverseArgumentParser, quote_arg_if_necessary __all__ = ["ReverseArgumentParser", "quote_arg_if_necessary"]