Skip to content

Commit bea3f6f

Browse files
Revert "Use typing.Dict for typing instead of dict"
This reverts commit 4f10744.
1 parent 4048ddc commit bea3f6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/conftest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def _nav_scripts_map() -> dict[str, str]:
124124
pyproject.toml.
125125
"""
126126
data = toml.load('pyproject.toml')
127-
scripts: Dict[str, str] = data.get('project', {}).get('scripts', {})
127+
scripts: dict[str, str] = data.get('project', {}).get('scripts', {})
128128
return {
129129
script: module.split(':', maxsplit=1)[0]
130130
for script, module in scripts.items()

0 commit comments

Comments
 (0)