Skip to content

Commit

Permalink
Fix typehinting
Browse files Browse the repository at this point in the history
  • Loading branch information
GigantPro committed Jul 29, 2023
1 parent 386d038 commit 4b8b58f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frozenclass/data_controller.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import Any
from typing import Any, List
import os
from shutil import copyfile
import platform
Expand All @@ -20,7 +20,7 @@ def __init__(self, saves_folder_path: str) -> None:

os.makedirs(self._saves_path, exist_ok=True)

def get_all_saves(self) -> list[Any]:
def get_all_saves(self) -> List[Any]:
"""Will return you instances of all previously saved classes.
Returns:
Expand Down

0 comments on commit 4b8b58f

Please sign in to comment.