Skip to content

Commit

Permalink
use old-style typing for python 3.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisvang committed Feb 7, 2024
1 parent 2aacb3b commit e5bab28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tufup/repo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ def from_config(cls):
instance._load_keys_and_roles(create_keys=False)
return instance

def initialize(self, extra_key_dirs: Optional[list[pathlib.Path]] = None):
def initialize(self, extra_key_dirs: Optional[List[pathlib.Path]] = None):
"""
Initialize (or update) the local repository.
Expand Down

0 comments on commit e5bab28

Please sign in to comment.