diff options
author | John L. Villalovos <debian.org@sodarock.com> | 2021-02-15 10:13:35 -0800 |
---|---|---|
committer | John L. Villalovos <debian.org@sodarock.com> | 2021-02-22 16:33:33 -0800 |
commit | fdec03976a17e0708459ba2fab22f54173295f71 (patch) | |
tree | c8ae5929be5041463b080cf73b4e4b961317f897 /gitlab/cli.py | |
parent | d9fdf1db9b928ac154ad385cf6e7f8220ea42aa1 (diff) | |
download | gitlab-fdec03976a17e0708459ba2fab22f54173295f71.tar.gz |
feat: add an initial mypy test to tox.ini
Add an initial mypy test to test gitlab/base.py and gitlab/__init__.py
Diffstat (limited to 'gitlab/cli.py')
-rw-r--r-- | gitlab/cli.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/cli.py b/gitlab/cli.py index d858a74..3a315a8 100644 --- a/gitlab/cli.py +++ b/gitlab/cli.py @@ -193,7 +193,7 @@ def main(): # Now we build the entire set of subcommands and do the complete parsing parser = _get_parser(gitlab.v4.cli) try: - import argcomplete + import argcomplete # type: ignore argcomplete.autocomplete(parser) except Exception: |