Skip to content

Commit d5a98d7

Browse files
Restyled by reorder-python-imports
1 parent 3fb9f64 commit d5a98d7

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

setup.py

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

34
libraries = [
45
"toxcore",

test/core_test.py

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

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

57

68
class CoreTest(unittest.TestCase):

test/tox_options_test.py

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

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

57

68
class ToxOptionsTest(unittest.TestCase):

tools/gen_api.py

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

69

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

0 commit comments

Comments
 (0)