Skip to content

Commit

Permalink
remove spurious output from online plot process
Browse files Browse the repository at this point in the history
  • Loading branch information
oliche committed Mar 23, 2023
1 parent 22361e6 commit abca7ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iblrig/base_choice_world.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def start(self):
self.output_task_parameters_to_json_file()

# starts the online plotting
subprocess.Popen(f"viewsession {str(self.paths['DATA_FILE_PATH'])}")
subprocess.Popen(f"viewsession {str(self.paths['DATA_FILE_PATH'])}", stdout=subprocess.DEVNULL, stderr=subprocess.STDOUT)

def run(self):
"""
Expand Down

0 comments on commit abca7ba

Please sign in to comment.