Spaces:
GIZ
/
Running on CPU Upgrade

prashant commited on
Commit
4903115
·
1 Parent(s): 4a6159c

type hinting fix

Browse files
Files changed (1) hide show
  1. udfPreprocess/preprocessing.py +1 -1
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(dict,str):
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