Skip to content

Commit

Permalink
Merge pull request #313 from EvanBldy/master
Browse files Browse the repository at this point in the history
various improvements
  • Loading branch information
EvanBldy authored Feb 12, 2024
2 parents 6bde08d + e4654d3 commit 84f3f82
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gazu/sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ def push_task_comment(
for attachment_id in comment["attachment_files"]:
if type(attachment_id) == dict:
attachment_id = attachment_id["id"]
attachment_file = gazu.files.get_attachment_file(
attachment_file = files_module.get_attachment_file(
attachment_id, client=client_source
)
file_path = "/tmp/zou/sync/" + attachment_file["name"]
Expand Down
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ classifiers =
zip_safe = False
packages = find:
install_requires =
python-socketio[client]==5.11.0; python_version != '2.7'
python-socketio[client]>=5.11.0,<6; python_version != '2.7'
requests>=2.25.1
Deprecated==1.2.14

Expand All @@ -48,5 +48,5 @@ test =
requests_mock

lint =
black==23.12.1; python_version >= '3.8'
pre-commit==3.6.0; python_version >= '3.9'
black==24.1.1; python_version >= '3.8'
pre-commit==3.6.1; python_version >= '3.9'

0 comments on commit 84f3f82

Please sign in to comment.