Skip to content

Commit 535b713

Browse files
committed
Remove unnecessary imports
1 parent b81cbb0 commit 535b713

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/pipeline/common.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import importlib
22
import gym
3-
import sneks
3+
# import sneks
44

55
import random
66
from src.data.mp_rollout_generator import preprocessed_mp_generator

src/scripts/play_gym.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import gym
22
import time
33

4-
import keyboard
4+
# import keyboard
55

66

77
def play_mario():
@@ -33,4 +33,4 @@ def play_mario():
3333

3434

3535
if __name__ == '__main__':
36-
play_mario()
36+
play_mario()

src/utils/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def add_virtual_display_if_non_present():
105105
print(f'>> ADDED VIRTUAL DISPLAY [{display}]')
106106

107107

108-
add_virtual_display_if_non_present()
108+
# add_virtual_display_if_non_present()
109109

110110

111111
def try_colored_traceback():

0 commit comments

Comments
 (0)