Skip to content

Commit

Permalink
fixed flake 8 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
tropxy committed Feb 7, 2025
1 parent 242265a commit f3b7239
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions iso15118/secc/controller/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -914,7 +914,7 @@ async def get_evse_max_current_limit(
session_limits = self.evse_data_context.session_limits
rated_limits = self.evse_data_context.rated_limits
if self.evse_data_context.current_type == CurrentType.AC:
logger.debug(f"Setting EVSE Max Curent...")
logger.debug("Setting EVSE Max Current...")
logger.debug(f"Active Rated Limits: {rated_limits.ac_limits}")
logger.debug(f"Active Session Limits: {session_limits.ac_limits}")
ac_limits = session_limits.ac_limits
Expand Down Expand Up @@ -942,7 +942,7 @@ async def get_evse_max_current_limit(
unit=UnitSymbol.AMPERE,
)
elif self.evse_data_context.current_type == CurrentType.DC:
logger.debug(f"Setting EVSE Max Curent...")
logger.debug("Setting EVSE Max Current...")
logger.debug(f"Active Rated Limits: {rated_limits.dc_limits}")
logger.debug(f"Active Session Limits: {session_limits.dc_limits}")
current_limit = session_limits.dc_limits.max_charge_current
Expand Down

0 comments on commit f3b7239

Please sign in to comment.