Skip to content

Commit

Permalink
code quality
Browse files Browse the repository at this point in the history
  • Loading branch information
ikaratass committed Mar 27, 2024
1 parent d776d54 commit 4a91174
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions iso15118/secc/states/iso15118_20_states.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from iso15118.secc.comm_session_handler import SECCCommunicationSession
from iso15118.secc.controller.common import UnknownEnergyService
from iso15118.secc.controller.evse_data import EVSEDataContext, CurrentType
from iso15118.secc.controller.evse_data import CurrentType, EVSEDataContext
from iso15118.secc.states.secc_state import StateSECC
from iso15118.shared.exi_codec import EXI
from iso15118.shared.messages.app_protocol import (
Expand Down Expand Up @@ -1348,9 +1348,7 @@ async def process_message(
self.charge_parameter_valid(ac_cpd_req.ac_params)
ev_data_context = self.comm_session.evse_controller.ev_data_context
ev_data_context.update_ac_charge_parameters_v20(energy_service, ac_cpd_req)
evse_data_context = (
self.comm_session.evse_controller.evse_data_context
)
evse_data_context = self.comm_session.evse_controller.evse_data_context
evse_data_context.current_type = CurrentType.AC
except UnknownEnergyService:
self.stop_state_machine(
Expand Down
2 changes: 1 addition & 1 deletion iso15118/secc/states/iso15118_2_states.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

from iso15118.secc.comm_session_handler import SECCCommunicationSession
from iso15118.secc.controller.ev_data import EVSessionContext15118
from iso15118.secc.controller.interface import AuthorizationResponse
from iso15118.secc.controller.evse_data import CurrentType
from iso15118.secc.controller.interface import AuthorizationResponse
from iso15118.secc.states.secc_state import StateSECC
from iso15118.shared.exceptions import (
CertAttributeError,
Expand Down

0 comments on commit 4a91174

Please sign in to comment.