Skip to content

Commit 9d06c1c

Browse files
committed
Fix imports in basic.py
And run black.
1 parent db3496d commit 9d06c1c

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

testsuite/drivers/basic.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
import glob
22
import os
3+
import sys
34

45
from e3.testsuite.result import TestStatus
56

67
from drivers import ALSTestDriver
78

8-
import inspect
9-
import importlib.util
10-
11-
from drivers.lsp_python_driver import run_simple_test
12-
139

1410
class JsonTestDriver(ALSTestDriver):
1511
"""Each test should have:
@@ -53,7 +49,7 @@ def run(self, previous_values, slot):
5349
"ALS": self.env.als,
5450
"ALS_HOME": self.env.als_home,
5551
"ALS_WAIT_FACTOR": str(self.env.wait_factor),
56-
"PYTHON": sys.executable
52+
"PYTHON": sys.executable,
5753
},
5854
ignore_environ=False,
5955
)

0 commit comments

Comments
 (0)