mobilityhouse / ocpp

Python implementation of the Open Charge Point Protocol (OCPP).
MIT License
766 stars 298 forks source link

v1.6 Action Enum members corrected #599

Closed Jared-Newell-Mobility closed 6 months ago

Jared-Newell-Mobility commented 7 months ago

Quite a few OCPP v1.6 enums have memebers that don't follow Python naming guide lines. For example:

 BootNotification = "BootNotification"
   ...

For a long time, these members have been deprecated in favor of members following Python naming guide lines:

boot_notification = "BootNotification"
   ...

This issue tracks the work to finally remove the deprecated, unpythonic members. Users should upgrade use the Pythonic members instead.

Jared-Newell-Mobility commented 6 months ago

Merged so will close