Skip to content

Commit

Permalink
Merge pull request #1954 from SUSE/fix-typeddict-usage
Browse files Browse the repository at this point in the history
Fix typeddict usage
  • Loading branch information
dcermak authored Nov 4, 2024
2 parents 5e91be1 + 10df46d commit 6356ce9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/bci_build/package/package_versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@
"spack": {
"6": "0.21.2",
"7": "0.21.2",
"Tumbleweed": "0.22.1"
"Tumbleweed": "0.22.2"
}
}
2 changes: 1 addition & 1 deletion src/bci_build/package/versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
for os_ver in OsVersion:
_pkg_version_fields[str(os_ver)] = str

_PKG_VERSION_T = TypedDict("_PKG_VERSION_T", fields=_pkg_version_fields, total=False)
_PKG_VERSION_T = TypedDict("_PKG_VERSION_T", _pkg_version_fields, total=False)


#: Type for storing versions of packages.
Expand Down

0 comments on commit 6356ce9

Please sign in to comment.