We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e594a4 commit 4bad6e3Copy full SHA for 4bad6e3
wqf/reader.py
@@ -79,7 +79,7 @@ class Reader(Reading):
79
_config: dict[Any, Any]
80
"""The reader configuration."""
81
82
- def __init__(self, config: dict[str:Any] | None = None):
+ def __init__(self, config: dict[str, Any] | None = None):
83
"""
84
Creates a new reader instance.
85
@@ -161,7 +161,7 @@ def _auto_engine(self, data_id: str | Path) -> str:
161
return self._engine
162
163
@property
164
- def _chunks(self) -> dict[str:int]:
+ def _chunks(self) -> dict[str, int]:
165
"""This method does not belong to public API."""
166
return self._config[_KEY_CHUNKS]
167
0 commit comments