Skip to content

Commit e2caa01

Browse files
authored
Merge pull request #732 from AA-Turner/rm-unused-imports
Remove unused imports
2 parents 8d5ec8c + 53518fe commit e2caa01

File tree

5 files changed

+1
-6
lines changed

5 files changed

+1
-6
lines changed

flit/install.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
from flit_core import common
1818
from .config import read_flit_config
19-
from .wheel import WheelBuilder
2019
from ._get_dirs import get_dirs
2120

2221
log = logging.getLogger(__name__)

flit_core/flit_core/config.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
import logging
55
import os
66
import os.path as osp
7-
from os.path import isabs
87
from pathlib import Path
98
import re
109

tests/test_sdist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from os.path import join as pjoin
33
from pathlib import Path
44
import pytest
5-
from shutil import which, copy, copytree
5+
from shutil import which, copytree
66
import sys
77
import tarfile
88
from tempfile import TemporaryDirectory

tests/test_tomlify.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
import os
21
from pathlib import Path
32
try:
43
import tomllib
54
except ImportError:
65
import tomli as tomllib
7-
from shutil import copy
86
from testpath import assert_isfile
97

108
from flit import tomlify

tests/test_upload.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import os
44
import io
55
import pathlib
6-
import sys
76

87
import pytest
98
import responses

0 commit comments

Comments
 (0)