Skip to content

Commit bc79513

Browse files
committed
solve PEP8 errors
1 parent 76029fb commit bc79513

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

pandas/core/arrays/integer.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,6 @@ def coerce_to_array(values, dtype, mask=None, copy=False):
206206
mask = mask.copy()
207207
return values, mask
208208

209-
210209
if hasattr(values, "dtype"):
211210
if isinstance(values, Categorical):
212211
values = np.array(values, copy=copy)

pandas/core/series.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2591,7 +2591,7 @@ def combine(self, other, func, fill_value=None):
25912591
# The function can return something of any type, so check
25922592
# if the type is compatible with the calling EA.
25932593
new_values = try_cast_to_ea(self._values, new_values)
2594-
2594+
25952595
return self._constructor(new_values, index=new_index, name=new_name)
25962596

25972597
def combine_first(self, other):

0 commit comments

Comments
 (0)