Skip to content

Commit 277a875

Browse files
committed
Use Dict instead of dict
1 parent fe1f71d commit 277a875

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphdatascience/tests/unit/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def last_query(self) -> str:
7272
return ""
7373
return self.queries[-1]
7474

75-
def last_params(self) -> dict[str, Any]:
75+
def last_params(self) -> Dict[str, Any]:
7676
if len(self.params) == 0:
7777
return {}
7878
return self.params[-1]

0 commit comments

Comments
 (0)