wacca: fix typing

This commit is contained in:
2023-03-03 16:31:42 -05:00
parent 9ad724d64b
commit c26f6b7b1d
2 changed files with 5 additions and 4 deletions

View File

@ -78,9 +78,9 @@ class Version(ShortVersion):
super().__init__(version, major, minor, patch)
split = version.split(".")
if len(split) >= 6:
self.country = split[3]
self.country: str = split[3]
self.build = int(split[4])
self.role = split[5]
self.role: str = split[5]
else:
self.country = country