Skip to content
Snippets Groups Projects
Commit b8017d80 authored by Alexis GAMELIN's avatar Alexis GAMELIN
Browse files

[Fix] double_sided_impedance for pandas>=2.X.X

parent cd30d0e5
No related branches found
No related tags found
No related merge requests found
...@@ -304,6 +304,6 @@ def double_sided_impedance(impedance): ...@@ -304,6 +304,6 @@ def double_sided_impedance(impedance):
except KeyError: except KeyError:
pass pass
all_data = impedance.data.append(negative_data) all_data = pd.concat([impedance.data, negative_data])
all_data = all_data.sort_index() all_data = all_data.sort_index()
impedance.data = all_data impedance.data = all_data
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