X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=osm_common%2Fmsgbase.py;h=958bb3ed422f2132a1fb320f32aea050107c79d4;hb=37e0914881759a514424ad5c0cc9278b9ced27a2;hp=80c5be573422758606308b4bf43bb84b1d165df1;hpb=4407a0e03c999f5729874d48fe6dd6013e4e5812;p=osm%2Fcommon.git diff --git a/osm_common/msgbase.py b/osm_common/msgbase.py index 80c5be5..958bb3e 100644 --- a/osm_common/msgbase.py +++ b/osm_common/msgbase.py @@ -79,14 +79,14 @@ class MsgBase(object): "Method 'read' not implemented", http_code=HTTPStatus.INTERNAL_SERVER_ERROR ) - async def aiowrite(self, topic, key, msg, loop=None): + async def aiowrite(self, topic, key, msg): raise MsgException( "Method 'aiowrite' not implemented", http_code=HTTPStatus.INTERNAL_SERVER_ERROR, ) async def aioread( - self, topic, loop=None, callback=None, aiocallback=None, group_id=None, **kwargs + self, topic, callback=None, aiocallback=None, group_id=None, **kwargs ): raise MsgException( "Method 'aioread' not implemented",