Skip to content

Commit

Permalink
fix type information on packages
Browse files Browse the repository at this point in the history
  • Loading branch information
antheas committed Aug 1, 2024
1 parent 18b9fef commit 4d6036f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rechunk/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def get_labels(
prev_manifest,
version_fn: str | None,
pretty: str | None,
base_pkg: dict[str, Package] | None,
base_pkg: Sequence[Package] | None,
) -> tuple[dict[str, str], str]:
# Date format is YYMMDD
# Timestamp format is YYYY-MM-DDTHH:MM:SSZ
Expand Down Expand Up @@ -197,7 +197,7 @@ def get_labels(
value = value.replace("<previous>", prev_version)

if base_pkg:
for pkg in base_pkg.values():
for pkg in base_pkg:
if not pkg.version:
continue
vkey = f"<version:{pkg.name}>"
Expand Down

0 comments on commit 4d6036f

Please sign in to comment.