Skip to content

Commit b63517c

Browse files
committed
Remove attempt to get self.name
1 parent faae2f0 commit b63517c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ def is_any_frame() -> bool:
472472
except ValueError:
473473

474474
# we have a dict of scalars
475-
result = Series(result, name=getattr(self, "name", None))
475+
result = Series(result)
476476

477477
return result, True
478478
elif is_list_like(arg):

0 commit comments

Comments
 (0)