Skip to content

Commit

Permalink
Correct if/elif usage.
Browse files Browse the repository at this point in the history
  • Loading branch information
freakboy3742 committed Sep 11, 2024
1 parent 7b8757c commit 4d0383f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/packaging/tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ def platform_tags() -> Iterator[str]:
"""
if platform.system() == "Darwin":
return mac_platforms()
if platform.system() == "iOS":
elif platform.system() == "iOS":
return ios_platforms()
elif platform.system() == "Linux":
return _linux_platforms()
Expand Down

0 comments on commit 4d0383f

Please sign in to comment.