You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently methods decorated with the @after() decorated don't take any arguments.
This will change. The @after() handler will receive the same arguments as the corresponding @on() handler.
This is a backwards incompatible change. Users of ocpp <= 0.2.2 should modify there @after() handlers so that they can take arguments. Users can use *args and/or **kwargs if they don't want to use the arguments, like:
Currently methods decorated with the
@after()
decorated don't take any arguments.This will change. The
@after()
handler will receive the same arguments as the corresponding@on()
handler.This is a backwards incompatible change. Users of ocpp <= 0.2.2 should modify there
@after()
handlers so that they can take arguments. Users can use*args
and/or**kwargs
if they don't want to use the arguments, like:The text was updated successfully, but these errors were encountered: