Skip to content

Commit a0977ba

Browse files
committed
Fix dict parameter
1 parent 39c1643 commit a0977ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

uniflow/op/extract/split/splitter_factory.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class SplitterOpsFactory:
2424
}
2525

2626
@classmethod
27-
def get(cls, config: dict[str, any]) -> "Op": # noqa: F821
27+
def get(cls, config: dict) -> "Op": # noqa: F821
2828
"""Get splitter.
2929
3030
Args:

0 commit comments

Comments
 (0)