Skip to content

Commit

Permalink
code format fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sedagundogdu committed May 15, 2024
1 parent 2bba3c6 commit 7e696cf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packaging_automation/common_tool_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -761,9 +761,9 @@ def match_release_version(versions_dictionary, package_version: str):
versions = list(versions_dictionary.keys())
numeric_versions_of_config: Dict[int, str] = {}
for version in versions:
numeric_versions_of_config[
get_numeric_counterpart_of_version(version)
] = version
numeric_versions_of_config[get_numeric_counterpart_of_version(version)] = (
version
)
package_version_numeric = get_numeric_counterpart_of_version(package_version)

if package_version_numeric in numeric_versions_of_config:
Expand Down

0 comments on commit 7e696cf

Please sign in to comment.