Skip to content

Commit e3c03af

Browse files
Restyled by isort
1 parent d215c94 commit e3c03af

File tree

4 files changed

+4
-12
lines changed

4 files changed

+4
-12
lines changed

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
from distutils.core import Extension
2-
from distutils.core import setup
1+
from distutils.core import Extension, setup
32

43
libraries = [
54
"toxcore",

test/core_test.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import unittest
22

3-
from pytox import core
4-
from pytox import error
5-
from pytox import options
3+
from pytox import core, error, options
64

75

86
class CoreTest(unittest.TestCase):

test/tox_options_test.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import unittest
22

3-
from pytox import core
4-
from pytox import error
5-
from pytox import options
3+
from pytox import core, error, options
64

75

86
class ToxOptionsTest(unittest.TestCase):

tools/gen_api.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
#!/usr/bin/env python3
22
import os.path
33
import sys
4-
from typing import Iterable
5-
from typing import List
6-
from typing import Sequence
7-
from typing import Tuple
4+
from typing import Iterable, List, Sequence, Tuple
85

96

107
def tokenize(line: str) -> Tuple[str, ...]:

0 commit comments

Comments
 (0)