Skip to content

Commit

Permalink
Fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeldycke committed Aug 20, 2024
1 parent 9a39d61 commit 74c3010
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
@@ -133,7 +133,7 @@ def info(self) -> dict[str, str | bool | None | dict[str, str | None]]:
# Rename distro ID to avoid conflict with our own ID.
d_info["distro_id"] = d_info.pop("id")
info = _recursive_update(info, _remove_blanks(d_info))
return info
return info # type: ignore[return-value]


AIX = Platform("aix", "IBM AIX", "➿")

0 comments on commit 74c3010

Please sign in to comment.