Skip to content

Commit eed2d3d

Browse files
committed
PEP8 fixes
1 parent 76471e9 commit eed2d3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/io/test_sql.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1357,7 +1357,7 @@ def test_datetime(self):
13571357
# with read_table -> type information from schema used
13581358
result = sql.read_sql_table('test_datetime', self.conn)
13591359
result = result.drop('index', axis=1)
1360-
# After GH 6415, dates outbound from a db will be localized to UTC
1360+
# After GH 6415, dates outbound from a db will be localized to UTC
13611361
# xref GH 7364
13621362
expected = df.copy()
13631363
expected['A'] = expected['A'].dt.tz_localize('UTC')
@@ -1381,7 +1381,7 @@ def test_datetime_NaT(self):
13811381

13821382
# with read_table -> type information from schema used
13831383
result = sql.read_sql_table('test_datetime', self.conn)
1384-
# After GH 6415, dates outbound from a db will be localized to UTC
1384+
# After GH 6415, dates outbound from a db will be localized to UTC
13851385
# xref GH 7364
13861386
expected = df.copy()
13871387
expected['A'] = expected['A'].dt.tz_localize('UTC')

0 commit comments

Comments
 (0)