Skip to content

Commit

Permalink
fix: type error on type definition
Browse files Browse the repository at this point in the history
commit d0603a2 has error in type definition for mypy.
It causes ‘type’ object is not subscriptable error.

Signed-off-by: Hiroshi Miura <miurahr@linux.com>
  • Loading branch information
miurahr committed Apr 13, 2024
1 parent cf4bda9 commit 799fcfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aqt/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ def get_arch_dir_name(host: str, arch: str, version: Version) -> str:
return arch

@staticmethod
def default_linux_desktop_arch_dir() -> tuple[str, str]:
def default_linux_desktop_arch_dir() -> Tuple[str, str]:
return ("gcc_64", "gcc_arm64")

@staticmethod
Expand Down

0 comments on commit 799fcfb

Please sign in to comment.