File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -32,8 +32,8 @@ def main():
32
32
args = create_parser ()
33
33
if args .input_directory is None :
34
34
args .input_directory = Path .cwd ()
35
- grid , data_input = load_input_signals (args .input_directory )
36
- lifted_data_input = lift_data (data_input , args .lift_factor )
37
- variables = initialize_variables (lifted_data_input , args .number_of_components ,args .data_type )
38
- components = initialize_components (variables ['number_of_components' ],variables ['number_of_signals' ],grid )
35
+ grid , input_data = load_input_signals (args .input_directory )
36
+ lifted_input_data = lift_data (input_data , args .lift_factor )
37
+ variables = initialize_variables (lifted_input_data , args .number_of_components , args .data_type )
38
+ components = initialize_components (variables ['number_of_components' ], variables ['number_of_signals' ], grid )
39
39
return components
You can’t perform that action at this time.
0 commit comments