Fix invalid 'FSMContextProxy.update()' function

This commit is contained in:
Cyril Margorin 2021-11-22 17:04:35 +03:00
parent bc0d50c677
commit 19d26597f8

View file

@ -408,6 +408,8 @@ class FSMContextProxy:
def update(self, data=None, **kwargs):
self._check_closed()
if data is None:
data = {}
self._data.update(data, **kwargs)
def pop(self, key, default=None):