Skip to content

Commit ecad71f

Browse files
committed
fix lint error
1 parent 8e35db9 commit ecad71f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pandas/tests/series/methods/test_combine_first.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,10 @@ def test_combine_first_dt_tz_values(self, tz_naive_fixture):
104104
def test_combine_first_timezone_series_with_empty_series(self):
105105
# GH 41800
106106
time_index = pd.date_range(
107-
datetime(2021, 1, 1, 1),
108-
datetime(2021, 1, 1, 10),
109-
freq='H',
110-
tz='Europe/Rome'
107+
datetime(2021, 1, 1, 1),
108+
datetime(2021, 1, 1, 10),
109+
freq="H",
110+
tz="Europe/Rome"
111111
)
112112
s1 = Series(np.random.random(10), index=time_index)
113113
s2 = Series()

0 commit comments

Comments
 (0)