Skip to content

Commit ad7a825

Browse files
dougbrngitosaurus
andauthored
Update src/nested_pandas/nestedframe/core.py
Co-authored-by: Derek T. Jones <[email protected]>
1 parent eff4a66 commit ad7a825

File tree

1 file changed

+1
-1
lines changed
  • src/nested_pandas/nestedframe

1 file changed

+1
-1
lines changed

src/nested_pandas/nestedframe/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -594,7 +594,7 @@ def from_lists(cls, df, base_columns=None, list_columns=None, name="nested"):
594594
packed_df = pack_lists(df[list_columns])
595595
packed_df.name = name
596596

597-
# join the nested column to the base_column df
597+
# concat the nested column to the base_column df
598598
if base_columns is not None:
599599
return pd.concat([df[base_columns], packed_df], axis=1)
600600
# or just return the packed_df as a nestedframe if no base cols

0 commit comments

Comments
 (0)