Island: Fix return type hint for Version._get_version_info()

This commit is contained in:
Mike Salvatore 2022-08-12 10:22:22 -04:00
parent 617d101af2
commit df1b9f0f9c
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ class Version:
self._latest_version, self._download_url = self._get_version_info()
self._initialization_complete.set()
def _get_version_info(self) -> Tuple[Optional[str], Optional[str]]:
def _get_version_info(self) -> Tuple[str, Optional[str]]:
url = LATEST_VERSION_URL.format(self._deployment.value)
try: