Skip to content

Commit cda3178

Browse files
committed
fix: run black
1 parent 8c7e862 commit cda3178

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

eagerx_tutorials/helper.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,7 @@ def setup_notebook():
6363
os.environ["DISPLAY"] = ":1"
6464

6565
# Install eagerx-gui and deps
66-
command = (
67-
"echo 'Installing eagerx-gui dependencies' && pip install pyqt5 pyqtgraph gymnasium==1.2.0 >> /tmp/eagerx_gui_deps.txt 2>&1"
68-
)
66+
command = "echo 'Installing eagerx-gui dependencies' && pip install pyqt5 pyqtgraph gymnasium==1.2.0 >> /tmp/eagerx_gui_deps.txt 2>&1"
6967
run_command(command)
7068

7169
command = "echo 'Installing eagerx-gui' && pip install --ignore-requires-python --no-deps eagerx-gui >> /tmp/eagerx_gui.txt 2>&1"
@@ -89,9 +87,7 @@ def setup_notebook():
8987
try:
9088
import stable_baselines3 # noqa:
9189
except ImportError:
92-
command = (
93-
"echo 'Installing stable-baselines3 with pip.' && pip install stable-baselines3==2.3.0 >> /tmp/sb3.txt 2>&1"
94-
)
90+
command = "echo 'Installing stable-baselines3 with pip.' && pip install stable-baselines3==2.3.0 >> /tmp/sb3.txt 2>&1"
9591
run_command(command)
9692
try:
9793
import sb3_contrib # noqa:

0 commit comments

Comments
 (0)