Skip to content

Commit 70e561c

Browse files
authored
Change GeoJSON class parameter type to dict[str, Any]
1 parent 57e1cfe commit 70e561c

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

stubs/geojson/geojson/base.pyi

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
class GeoJSON(dict):
1+
from typing import Any
2+
3+
class GeoJSON(dict[str, Any]):
24
def __init__(self, iterable=(), **extra) -> None: ...
35
def __getattr__(self, name): ...
46
def __setattr__(self, name, value) -> None: ...

0 commit comments

Comments
 (0)