Skip to content

Commit

Permalink
Fix flake errors
Browse files Browse the repository at this point in the history
  • Loading branch information
shalinnijel2 committed May 13, 2024
1 parent 5f5b612 commit a623eee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions iso15118/secc/states/din_spec_states.py
Original file line number Diff line number Diff line change
Expand Up @@ -474,9 +474,9 @@ async def process_message(
# Requirement in 6.4.3.106 of the IEC 61851-23
# Any relays in the DC output circuit of the DC station shall
# be closed during the insulation test
contactors_closed_for_cable_check: Optional[bool] = (
await self.comm_session.evse_controller.is_contactor_closed()
)
contactors_closed_for_cable_check: Optional[
bool
] = await self.comm_session.evse_controller.is_contactor_closed()

if contactors_closed_for_cable_check is not None:
if not contactors_closed_for_cable_check:
Expand Down

0 comments on commit a623eee

Please sign in to comment.