Skip to content

Commit

Permalink
Revert "Use typing.Dict for typing instead of dict"
Browse files Browse the repository at this point in the history
This reverts commit 4f10744.
  • Loading branch information
johannaengland committed Jul 3, 2024
1 parent 4048ddc commit bea3f6f
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 @@ -124,7 +124,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 bea3f6f

Please sign in to comment.