Skip to content

Commit 8e0c7e1

Browse files
committed
chore(ruff): order imports.
1 parent c713dc7 commit 8e0c7e1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

roundup/anypy/scandir_.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
except ImportError:
55
# python 2 fallback
66
import os
7-
import scandir # pip package
7+
8+
import scandir # pip package
89
os.scandir = scandir.scandir

roundup/anypy/urllib_.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11

22
try:
33
# Python 3+
4-
from urllib.parse import parse_qs, quote, unquote, urlencode, \
5-
urlparse, urlunparse
4+
from urllib.parse import parse_qs, quote, unquote, urlencode, urlparse, urlunparse
65
from urllib.request import urlopen
76
except ImportError:
87
# Python 2.5-2.7

0 commit comments

Comments
 (0)