Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
SteffenMeinecke committed Nov 13, 2024
1 parent e477572 commit 10e763a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pandapower/converter/jao/from_jao.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,14 +218,14 @@ def _data_correction(
("Substation_2", "Full_name")]:
data[key].loc[:, loc_name] = data[key].loc[:, loc_name].str.strip().apply(
_multi_str_repl, repl=rename_locnames)
html_str = html_str.replace(rename_locnames)
html_str = _multi_str_repl(html_str, rename_locnames)

# --- Transformer data --------------------------------
key = "Transformers"

# --- fix Locations
loc_name = ("Location", "Full Name")
data[key].loc[:, loc_name] = data[key].loc[:, loc_name].str.strip().str.apply(
data[key].loc[:, loc_name] = data[key].loc[:, loc_name].str.strip().apply(
_multi_str_repl, repl=rename_locnames)

# --- fix data in nonnull_taps
Expand Down

0 comments on commit 10e763a

Please sign in to comment.