Skip to content

Commit 28b7404

Browse files
author
Kaathi
committed
Issue: pandas-dev#29207, Linter fix (NOQA)
1 parent bb26187 commit 28b7404

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pandas/io/common.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
Type,
2323
Union,
2424
)
25-
from urllib.parse import (
25+
from urllib.parse import ( # noqa
2626
urlencode,
2727
urljoin,
2828
urlparse as parse_url,

pandas/io/sql.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def _is_sqlalchemy_connectable(con):
4848
_SQLALCHEMY_INSTALLED = False
4949

5050
if _SQLALCHEMY_INSTALLED:
51-
import sqlalchemy
51+
import sqlalchemy # noqa: F811
5252

5353
return isinstance(con, sqlalchemy.engine.Connectable)
5454
else:

0 commit comments

Comments
 (0)