Skip to content

Commit

Permalink
Fix lint problems
Browse files Browse the repository at this point in the history
  • Loading branch information
vladistan committed Sep 13, 2024
1 parent bbc1c73 commit af61bb2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions rules-engine/tests/test_rules_engine/test_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,8 @@ def sample_temp_inputs() -> TemperatureInput:
}

return TemperatureInput(
temperatures=temperature_dict['temperatures'],
dates=[datetime.fromisoformat(x) for x in temperature_dict['dates']],
temperatures=temperature_dict["temperatures"],
dates=[datetime.fromisoformat(x) for x in temperature_dict["dates"]],
)


Expand Down Expand Up @@ -246,7 +246,8 @@ def sample_normalized_billing_periods() -> list[NormalizedBillingPeriodRecordBas
period_end_date=datetime.fromisoformat(x["period_end_date"]),
usage=x["usage"],
inclusion_override=x["inclusion_override"],
) for x in billing_periods_dict
)
for x in billing_periods_dict
]

return billing_periods
Expand Down

0 comments on commit af61bb2

Please sign in to comment.