Skip to content

Commit 171a809

Browse files
committed
chore(lint): clean up ruff errors
sort imports, remove unused statement
1 parent ebfcfbd commit 171a809

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

roundup/anypy/http_.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
try:
22
# Python 3+
33
from http import client, server
4-
server.DEFAULT_ERROR_MESSAGE
54
except (ImportError, AttributeError):
65
# Python 2.5-2.7
7-
import httplib as client # noqa: F401
8-
import BaseHTTPServer as server # noqa: F401
6+
import BaseHTTPServer as server # noqa: F401
7+
import httplib as client # noqa: F401

0 commit comments

Comments
 (0)