Skip to content

Commit 509855c

Browse files
committed
code lint
1 parent f669581 commit 509855c

2 files changed

Lines changed: 2 additions & 9 deletions

File tree

wolframclient/cli/commands/setup.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
11
from __future__ import absolute_import, print_function, unicode_literals
22

3-
import sys
4-
import unittest
5-
63
from wolframclient.cli.utils import SimpleCommand
74
from wolframclient.utils import six
85
from wolframclient.utils.decorators import to_tuple
9-
from wolframclient.utils.functional import map
10-
from wolframclient.utils.importutils import module_path
116

127

138
@to_tuple
@@ -30,4 +25,4 @@ class Command(SimpleCommand):
3025
A list of patterns can be provided to specify the tests to run.
3126
"""
3227

33-
dependencies = dependencies()
28+
dependencies = dependencies()

wolframclient/cli/commands/test.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,17 @@
44
import unittest
55

66
from wolframclient.cli.utils import SimpleCommand
7-
from wolframclient.utils import six
8-
from wolframclient.utils.decorators import to_tuple
97
from wolframclient.utils.functional import map
108
from wolframclient.utils.importutils import module_path
119

10+
1211
class Command(SimpleCommand):
1312
""" Run test suites from the tests modules.
1413
A list of patterns can be provided to specify the tests to run.
1514
"""
1615

1716
modules = ["wolframclient.tests"]
1817

19-
2018
def add_arguments(self, parser):
2119
parser.add_argument(
2220
"-x",

0 commit comments

Comments
 (0)