diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2021-11-08 19:06:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-08 19:06:32 +0100 |
commit | 472b300154c5e59289d83f0b34d24bc52eb9b6da (patch) | |
tree | 71312fe159fcc62ace0aeb24be94072ee4cf33cf /gitlab/v4/cli.py | |
parent | 9a2f54cf044929dfc3fd89714ce657fa839e35d0 (diff) | |
parent | 7828ba2fd13c833c118a673bac09b215587ba33b (diff) | |
download | gitlab-472b300154c5e59289d83f0b34d24bc52eb9b6da.tar.gz |
Merge pull request #1680 from python-gitlab/jlvillal/mypy_small_files_1
chore: enforce type-hints on most files in gitlab/v4/objects/
Diffstat (limited to 'gitlab/v4/cli.py')
-rw-r--r-- | gitlab/v4/cli.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gitlab/v4/cli.py b/gitlab/v4/cli.py index f46e9af..6cffce7 100644 --- a/gitlab/v4/cli.py +++ b/gitlab/v4/cli.py @@ -103,6 +103,8 @@ class GitlabCLI(object): if TYPE_CHECKING: assert export_status is not None data = export_status.download() + if TYPE_CHECKING: + assert data is not None sys.stdout.buffer.write(data) except Exception as e: |