File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -124,12 +124,12 @@ def _poisson_collect_output(numdofs_file: str) -> int:
124124 return int (f .read ())
125125
126126
127- def _copy_file (stage_name , source_file ):
127+ def _copy_file (stage_name : str , source_file : str ):
128128 input_file = os .path .join (os .path .abspath (stage_name ), os .path .basename (source_file ))
129129 if input_file != source_file :
130130 shutil .copyfile (source_file , input_file )
131131
132132
133- def _copy_file_from_source (stage_name , source_file_name , source_directory : str = source_directory_global ):
133+ def _copy_file_from_source (stage_name : str , source_file_name : str , source_directory : str ):
134134 source_file = os .path .join (source_directory , source_file_name )
135135 shutil .copyfile (source_file , os .path .join (stage_name , source_file_name ))
You can’t perform that action at this time.
0 commit comments