Skip to content

Commit 4bad6e3

Browse files
committed
Fix: annotation
1 parent 1e594a4 commit 4bad6e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

wqf/reader.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ class Reader(Reading):
7979
_config: dict[Any, Any]
8080
"""The reader configuration."""
8181

82-
def __init__(self, config: dict[str:Any] | None = None):
82+
def __init__(self, config: dict[str, Any] | None = None):
8383
"""
8484
Creates a new reader instance.
8585
@@ -161,7 +161,7 @@ def _auto_engine(self, data_id: str | Path) -> str:
161161
return self._engine
162162

163163
@property
164-
def _chunks(self) -> dict[str:int]:
164+
def _chunks(self) -> dict[str, int]:
165165
"""This method does not belong to public API."""
166166
return self._config[_KEY_CHUNKS]
167167

0 commit comments

Comments
 (0)