Skip to content

Commit

Permalink
fix python3.8 typing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianPugh committed Feb 16, 2023
1 parent c05453a commit e33369d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion belay/packagemanager/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def _dependencies_name_validator(dependencies) -> dict:
return dependencies


def _dependencies_preprocessor(dependencies) -> dict[str, List[dict]]:
def _dependencies_preprocessor(dependencies) -> Dict[str, List[dict]]:
"""Preprocess various dependencies based on dtype.
* ``str`` -> single dependency that may get renamed to __init__.py, if appropriate.
Expand Down

0 comments on commit e33369d

Please sign in to comment.