Skip to content

Commit

Permalink
chore(lint): clean up ruff errors
Browse files Browse the repository at this point in the history
sort imports, remove unused statement
  • Loading branch information
rouilj committed Mar 1, 2024
1 parent ebfcfbd commit 171a809
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions roundup/anypy/http_.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
try:
# Python 3+
from http import client, server
server.DEFAULT_ERROR_MESSAGE
except (ImportError, AttributeError):
# Python 2.5-2.7
import httplib as client # noqa: F401
import BaseHTTPServer as server # noqa: F401
import BaseHTTPServer as server # noqa: F401
import httplib as client # noqa: F401

0 comments on commit 171a809

Please sign in to comment.