Skip to content

Commit

Permalink
fix: Resolved TypeError for list[int]
Browse files Browse the repository at this point in the history
  • Loading branch information
onuratakan committed Oct 24, 2024
1 parent 0ee487c commit c8452e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion upsonic/remote/on_prem.py
Original file line number Diff line number Diff line change
Expand Up @@ -679,7 +679,7 @@ def dump(
def load(self, key:str, version:str=None) -> any:
return self.get(key, version=version, print_exc=True)

def get_currently_version(self)-> list[int]:
def get_currently_version(self)-> List[int]:
total = sys.version_info
the_version = []
the_version.append(total.major)
Expand Down

0 comments on commit c8452e4

Please sign in to comment.