Skip to content

Commit

Permalink
Makes mypy happy
Browse files Browse the repository at this point in the history
Add typing to make mypy check pass
  • Loading branch information
JAVGan committed Dec 10, 2024
1 parent 39802e0 commit 7a71561
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pubtools/_marketplacesvm/tasks/push/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ def _push_upload(
# multiple destinations within each marketplace, we may merge the StArMap "meta"
# safely as the upload will just take advantage of their "sharing_accounts"
# which es expected to be the same for all destinations within a same marketplace.
meta = {}
meta: Dict[str, Any] = {}
for d in pi.dest:
meta.update(mapped_item.get_metadata_for_mapped_item(d) or {})
pi = self._upload(
Expand Down

0 comments on commit 7a71561

Please sign in to comment.