Skip to content

Commit

Permalink
Fix 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhollas committed Jan 14, 2025
1 parent d4289e7 commit 55d03cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aiida/common/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def validate_list_of_string_tuples(val: Any, tuple_length: int) -> bool:
return True


def get_unique_filename(filename: str, list_of_filenames: list | tuple) -> str:
def get_unique_filename(filename: str, list_of_filenames: 'list | tuple') -> str:
"""Return a unique filename that can be added to the list_of_filenames.
If filename is not in list_of_filenames, it simply returns the filename
Expand Down

0 comments on commit 55d03cd

Please sign in to comment.