We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f1a003 commit 8cbf8c0Copy full SHA for 8cbf8c0
1 file changed
datapath/types.py
@@ -18,7 +18,7 @@ def __repr__(self) -> str:
18
19
20
Key = NewType('Key', int|str)
21
-SplitPath = NewType('SplitPath', tuple[Key|_IterationPoint, ...])
+SplitPath = NewType('SplitPath', tuple[Key|_IterationPoint|range, ...])
22
Map = NewType('Map', dict[str, Any])
23
Collection = NewType('Collection', list|Map)
24
CollectionKey = NewType('CollectionKey', tuple[list, int]|tuple[Map, str])
0 commit comments