Skip to content

Commit

Permalink
Corrected datatype used for rt_lmp_prelim and rt_lmp_final
Browse files Browse the repository at this point in the history
  • Loading branch information
AlmostGreenz committed Oct 29, 2024
1 parent a541b60 commit e497473
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MISOReports/MISOReports.py
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ def parse_rt_lmp_final(
df = pd.read_csv(
filepath_or_buffer=StringIO(csv_data),
dtype={
f"HE {idx}": pd.Float64 for idx in range(1, 25)
f"HE {idx}": pd.Float64Dtype() for idx in range(1, 25)
}
)

Expand All @@ -409,7 +409,7 @@ def parse_rt_lmp_prelim(
df = pd.read_csv(
filepath_or_buffer=StringIO(csv_data),
dtype={
f"HE {idx}": pd.Float64 for idx in range(1, 25)
f"HE {idx}": pd.Float64Dtype() for idx in range(1, 25)
}
)

Expand Down

0 comments on commit e497473

Please sign in to comment.