Skip to content

Commit f5556d2

Browse files
committed
refactor
1 parent 9165e6b commit f5556d2

3 files changed

Lines changed: 4 additions & 5 deletions

File tree

wolframclient/tests/configure.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def _parse_config(config):
106106
try:
107107
with open(expended_path, "r") as fp:
108108
json_config = json.load(fp)
109-
secured_authentication_key, user_configuration, server, kernel_path, api_owner= _parse_config(
109+
secured_authentication_key, user_configuration, server, kernel_path, api_owner = _parse_config(
110110
json_config
111111
)
112112
except IOError:

wolframclient/tests/evaluation/test_coroutine.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727

2828
LOOP = get_event_loop()
2929

30+
3031
class TestCoroutineSession(BaseTestCase):
3132
@classmethod
3233
def setUpClass(cls):

wolframclient/tests/evaluation/test_kernel.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -289,10 +289,8 @@ def test_stop_start_restart_status(self):
289289

290290
def test_throw(self):
291291

292-
self.assertEqual(
293-
self.kernel_session.evaluate(wl.Throw(2)),
294-
wl.Hold(wl.Throw(2))
295-
)
292+
self.assertEqual(self.kernel_session.evaluate(wl.Throw(2)), wl.Hold(wl.Throw(2)))
293+
296294

297295
class TestSessionTimeout(TestCaseSettings):
298296
def test_evaluate_async_basic_inputform(self):

0 commit comments

Comments
 (0)