Skip to content

Commit 498897c

Browse files
committed
Fix lint
1 parent 6b5a870 commit 498897c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/_libs/tslibs/fields.pyx

+2-2
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def get_date_name_field(ndarray[int64_t] dtindex, object field,
105105
names = np.array(DAYS_FULL, dtype=np.object_)
106106
else:
107107
names = np.array(get_locale_names('f_weekday', locale),
108-
dtype=np.object_)
108+
dtype=np.object_)
109109
for i in range(count):
110110
if dtindex[i] == NPY_NAT:
111111
out[i] = np.nan
@@ -120,7 +120,7 @@ def get_date_name_field(ndarray[int64_t] dtindex, object field,
120120
names = np.array(MONTHS_FULL, dtype=np.object_)
121121
else:
122122
names = np.array(get_locale_names('f_month', locale),
123-
dtype=np.object_)
123+
dtype=np.object_)
124124
for i in range(count):
125125
if dtindex[i] == NPY_NAT:
126126
out[i] = np.nan

0 commit comments

Comments
 (0)