@@ -820,6 +820,7 @@ def replace(self, space_name, values, *, mode=Mode.RW, on_push=None, on_push_ctx
820820
821821 .. _replace: https://www.tarantool.io/en/doc/latest/reference/reference_lua/box_space/replace/
822822 """
823+ # pylint: disable=too-many-arguments
823824
824825 return self ._send (mode , 'replace' , space_name , values ,
825826 on_push = on_push , on_push_ctx = on_push_ctx )
@@ -850,6 +851,7 @@ def insert(self, space_name, values, *, mode=Mode.RW, on_push=None, on_push_ctx=
850851
851852 .. _insert: https://www.tarantool.io/en/doc/latest/reference/reference_lua/box_space/insert/
852853 """
854+ # pylint: disable=too-many-arguments
853855
854856 return self ._send (mode , 'insert' , space_name , values ,
855857 on_push = on_push , on_push_ctx = on_push_ctx )
@@ -883,6 +885,7 @@ def delete(self, space_name, key, *, index=0, mode=Mode.RW, on_push=None, on_pus
883885
884886 .. _delete: https://www.tarantool.io/en/doc/latest/reference/reference_lua/box_space/delete/
885887 """
888+ # pylint: disable=too-many-arguments
886889
887890 return self ._send (mode , 'delete' , space_name , key , index = index ,
888891 on_push = on_push , on_push_ctx = on_push_ctx )
@@ -920,6 +923,7 @@ def upsert(self, space_name, tuple_value, op_list, *, index=0, mode=Mode.RW,
920923
921924 .. _upsert: https://www.tarantool.io/en/doc/latest/reference/reference_lua/box_space/upsert/
922925 """
926+ # pylint: disable=too-many-arguments
923927
924928 return self ._send (mode , 'upsert' , space_name , tuple_value ,
925929 op_list , index = index , on_push = on_push , on_push_ctx = on_push_ctx )
@@ -957,6 +961,7 @@ def update(self, space_name, key, op_list, *, index=0, mode=Mode.RW,
957961
958962 .. _update: https://www.tarantool.io/en/doc/latest/reference/reference_lua/box_space/update/
959963 """
964+ # pylint: disable=too-many-arguments
960965
961966 return self ._send (mode , 'update' , space_name , key ,
962967 op_list , index = index , on_push = on_push , on_push_ctx = on_push_ctx )
@@ -1023,6 +1028,7 @@ def select(self, space_name, key, *, offset=0, limit=0xffffffff,
10231028
10241029 .. _select: https://www.tarantool.io/en/doc/latest/reference/reference_lua/box_space/select/
10251030 """
1031+ # pylint: disable=too-many-arguments
10261032
10271033 return self ._send (mode , 'select' , space_name , key , offset = offset , limit = limit ,
10281034 index = index , iterator = iterator , on_push = on_push , on_push_ctx = on_push_ctx )
@@ -1214,6 +1220,7 @@ def crud_update(self, space_name, key, operations=None, opts=None, *, mode=Mode.
12141220 :raise: :exc:`~tarantool.error.CrudModuleError`,
12151221 :exc:`~tarantool.error.DatabaseError`
12161222 """
1223+ # pylint: disable=too-many-arguments
12171224
12181225 return self ._send (mode , 'crud_update' , space_name , key , operations , opts )
12191226
@@ -1379,6 +1386,7 @@ def crud_upsert(self, space_name, values, operations=None, opts=None, *, mode=Mo
13791386 :raise: :exc:`~tarantool.error.CrudModuleError`,
13801387 :exc:`~tarantool.error.DatabaseError`
13811388 """
1389+ # pylint: disable=too-many-arguments
13821390
13831391 return self ._send (mode , 'crud_upsert' , space_name , values , operations , opts )
13841392
@@ -1409,6 +1417,7 @@ def crud_upsert_object(self, space_name, values, operations=None, opts=None, *,
14091417 :raise: :exc:`~tarantool.error.CrudModuleError`,
14101418 :exc:`~tarantool.error.DatabaseError`
14111419 """
1420+ # pylint: disable=too-many-arguments
14121421
14131422 return self ._send (mode , 'crud_upsert_object' , space_name , values , operations , opts )
14141423
0 commit comments