Skip to content
Snippets Groups Projects
Commit a4c7491b authored by Bert Palm's avatar Bert Palm 🎇
Browse files

minor change

parent 1bd36283
No related branches found
No related tags found
3 merge requests!271Static expansion of regular expressions,!260Follow-Up Translations,!257fixed missing initial UNFLAGGED column on flags init
This commit is part of merge request !260. Comments created here will be created in the context of that merge request.
...@@ -197,7 +197,7 @@ class Flags: ...@@ -197,7 +197,7 @@ class Flags:
raise ValueError("raw_data must not have duplicate keys") raise ValueError("raw_data must not have duplicate keys")
if isinstance(item, History): if isinstance(item, History):
result[k] = History(item, copy=True) if copy else item result[k] = item.copy() if copy else item
continue continue
if not isinstance(item, pd.Series): if not isinstance(item, pd.Series):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment