@@ -820,6 +820,7 @@ def replace(self, space_name, values, *, mode=Mode.RW, on_push=None, on_push_ctx
820
820
821
821
.. _replace: https://www.tarantool.io/en/doc/latest/reference/reference_lua/box_space/replace/
822
822
"""
823
+ # pylint: disable=too-many-arguments
823
824
824
825
return self ._send (mode , 'replace' , space_name , values ,
825
826
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=
850
851
851
852
.. _insert: https://www.tarantool.io/en/doc/latest/reference/reference_lua/box_space/insert/
852
853
"""
854
+ # pylint: disable=too-many-arguments
853
855
854
856
return self ._send (mode , 'insert' , space_name , values ,
855
857
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
883
885
884
886
.. _delete: https://www.tarantool.io/en/doc/latest/reference/reference_lua/box_space/delete/
885
887
"""
888
+ # pylint: disable=too-many-arguments
886
889
887
890
return self ._send (mode , 'delete' , space_name , key , index = index ,
888
891
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,
920
923
921
924
.. _upsert: https://www.tarantool.io/en/doc/latest/reference/reference_lua/box_space/upsert/
922
925
"""
926
+ # pylint: disable=too-many-arguments
923
927
924
928
return self ._send (mode , 'upsert' , space_name , tuple_value ,
925
929
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,
957
961
958
962
.. _update: https://www.tarantool.io/en/doc/latest/reference/reference_lua/box_space/update/
959
963
"""
964
+ # pylint: disable=too-many-arguments
960
965
961
966
return self ._send (mode , 'update' , space_name , key ,
962
967
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,
1023
1028
1024
1029
.. _select: https://www.tarantool.io/en/doc/latest/reference/reference_lua/box_space/select/
1025
1030
"""
1031
+ # pylint: disable=too-many-arguments
1026
1032
1027
1033
return self ._send (mode , 'select' , space_name , key , offset = offset , limit = limit ,
1028
1034
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.
1214
1220
:raise: :exc:`~tarantool.error.CrudModuleError`,
1215
1221
:exc:`~tarantool.error.DatabaseError`
1216
1222
"""
1223
+ # pylint: disable=too-many-arguments
1217
1224
1218
1225
return self ._send (mode , 'crud_update' , space_name , key , operations , opts )
1219
1226
@@ -1379,6 +1386,7 @@ def crud_upsert(self, space_name, values, operations=None, opts=None, *, mode=Mo
1379
1386
:raise: :exc:`~tarantool.error.CrudModuleError`,
1380
1387
:exc:`~tarantool.error.DatabaseError`
1381
1388
"""
1389
+ # pylint: disable=too-many-arguments
1382
1390
1383
1391
return self ._send (mode , 'crud_upsert' , space_name , values , operations , opts )
1384
1392
@@ -1409,6 +1417,7 @@ def crud_upsert_object(self, space_name, values, operations=None, opts=None, *,
1409
1417
:raise: :exc:`~tarantool.error.CrudModuleError`,
1410
1418
:exc:`~tarantool.error.DatabaseError`
1411
1419
"""
1420
+ # pylint: disable=too-many-arguments
1412
1421
1413
1422
return self ._send (mode , 'crud_upsert_object' , space_name , values , operations , opts )
1414
1423
0 commit comments