fix: type error on type definition

commit d0603a25 has error in type definition for mypy.
It causes ‘type’ object is not subscriptable error.

Signed-off-by: Hiroshi Miura <miurahr@linux.com>
This commit is contained in:
Hiroshi Miura
2024-04-13 17:40:25 +09:00
parent cf4bda9a4e
commit 799fcfb026

View File

@@ -393,7 +393,7 @@ class QtRepoProperty:
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