diff --git a/agent/core.py b/agent/core.py index 4039483..8ec4c78 100644 --- a/agent/core.py +++ b/agent/core.py @@ -43,7 +43,7 @@ class BaseTransmitter(metaclass=ABCMeta): @abstractmethod @check_input_type(AbonStruct) - def add_user(self, user): + def add_user(self, user, *args): """добавляем абонента""" @abstractmethod @@ -53,7 +53,7 @@ class BaseTransmitter(metaclass=ABCMeta): @abstractmethod @check_input_type(AbonStruct) - def update_user(self, user): + def update_user(self, user, *args): """чтоб обновить абонента можно изменить всё кроме его uid, по uid абонент будет найден""" @abstractmethod