Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/.ci
diff options
context:
space:
mode:
Diffstat (limited to '.ci')
-rwxr-xr-x.ci/deploy.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/.ci/deploy.py b/.ci/deploy.py
index 96683bfdc..1dbd70c53 100755
--- a/.ci/deploy.py
+++ b/.ci/deploy.py
@@ -1,6 +1,7 @@
#!/usr/bin/env python3
from typing import Any
+from typing import cast
from typing import Optional
import functools
@@ -102,7 +103,7 @@ def download_artifacts(path: Path) -> None:
for response in responses:
for artifact in response:
- filename = artifact['fileName']
+ filename = cast(str, artifact['fileName'])
file_url = artifact['fileUrl']
log.info('Download %s', filename)