We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb26187 commit 28b7404Copy full SHA for 28b7404
pandas/io/common.py
@@ -22,7 +22,7 @@
22
Type,
23
Union,
24
)
25
-from urllib.parse import (
+from urllib.parse import ( # noqa
26
urlencode,
27
urljoin,
28
urlparse as parse_url,
pandas/io/sql.py
@@ -48,7 +48,7 @@ def _is_sqlalchemy_connectable(con):
48
_SQLALCHEMY_INSTALLED = False
49
50
if _SQLALCHEMY_INSTALLED:
51
- import sqlalchemy
+ import sqlalchemy # noqa: F811
52
53
return isinstance(con, sqlalchemy.engine.Connectable)
54
else:
0 commit comments