Skip to content

Commit

Permalink
Use typing.Dict for typing instead of dict
Browse files Browse the repository at this point in the history
  • Loading branch information
johannaengland committed May 7, 2024
1 parent 35f1a9b commit 8138a57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def _nav_scripts_map() -> Dict[str, str]:
pyproject.toml.
"""
data = toml.load('pyproject.toml')
scripts: dict[str, str] = data.get('project', {}).get('scripts', {})
scripts: Dict[str, str] = data.get('project', {}).get('scripts', {})
return {
script: module.split(':', maxsplit=1)[0]
for script, module in scripts.items()
Expand Down

0 comments on commit 8138a57

Please sign in to comment.