prashant
commited on
Commit
·
4903115
1
Parent(s):
4a6159c
type hinting fix
Browse files
udfPreprocess/preprocessing.py
CHANGED
@@ -55,7 +55,7 @@ class FileConverter(BaseComponent):
|
|
55 |
|
56 |
def run(self, file_name: str , file_path: str, encoding: Optional[str]=None,
|
57 |
id_hash_keys: Optional[List[str]] = None,
|
58 |
-
) -> tuple
|
59 |
""" this is required method to invoke the component in
|
60 |
the pipeline implementation.
|
61 |
|
|
|
55 |
|
56 |
def run(self, file_name: str , file_path: str, encoding: Optional[str]=None,
|
57 |
id_hash_keys: Optional[List[str]] = None,
|
58 |
+
) -> tuple[dict,str]:
|
59 |
""" this is required method to invoke the component in
|
60 |
the pipeline implementation.
|
61 |
|