Skip to content

Commit

Permalink
[autofix] Format Python
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeldycke committed Oct 7, 2024
1 parent b93f4dc commit 7ce8148
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extra_platforms/platforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ def _windows_infos() -> dict[str, Any]:
Get even more details for windows version? See inspirations from:
https://github.com/saltstack/salt/blob/246d066/salt/grains/core.py#L1432-L1488
"""
release, version, _csd, _ptype = platform.win32_ver()
release, _version, _csd, _ptype = platform.win32_ver()
parts = dict(zip(("major", "minor", "build_number"), release.split(".", 2)))
major = parts.get("major")
minor = parts.get("minor")
Expand Down

0 comments on commit 7ce8148

Please sign in to comment.