@@ -135,7 +135,7 @@ def print_and_clear_queue(self):
135135 def read_program_output_from_process (self ):
136136 while self ._still_run_program :
137137 self .process : subprocess .Popen
138- program_output_data = self ._process .stdout .readline (self ._program_buffer_size )\
138+ program_output_data = self ._process .stdout .readline (self ._program_buffer_size ) \
139139 .decode ("utf-8" , "replace" )
140140 if self ._process :
141141 self ._process .stdout .flush ()
@@ -144,7 +144,7 @@ def read_program_output_from_process(self):
144144
145145 def read_program_error_output_from_process (self ):
146146 while self ._still_run_program :
147- program_error_output_data = self ._process .stderr .readline (self ._program_buffer_size )\
147+ program_error_output_data = self ._process .stderr .readline (self ._program_buffer_size ) \
148148 .decode ("utf-8" , "replace" )
149149 if self ._process :
150150 self ._process .stderr .flush ()
@@ -176,8 +176,6 @@ def start_test_pioneer_process(self):
176176
177177
178178def init_and_start_test_pioneer_process (ui_we_want_to_set : AutomationEditor , file_path : str ):
179- test_pioneer_process_manager = TestPioneerProcess (
180- main_window = ui_we_want_to_set , executable_path = file_path )
181- test_pioneer_process_manager .start_test_pioneer_process ()
182-
183-
179+ test_pioneer_process_manager = TestPioneerProcess (
180+ main_window = ui_we_want_to_set , executable_path = file_path )
181+ test_pioneer_process_manager .start_test_pioneer_process ()
0 commit comments