mobilityhouse / ocpp

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

v2.0.1 Action enums corrected #579

Closed Jared-Newell-Mobility closed 8 months ago

Jared-Newell-Mobility commented 9 months ago

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

 BootNotification = "BootNotification"
   ...

For a long time, these variants 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 8 months ago

Merged so will close