diff --git a/python/restate/service.py b/python/restate/service.py index 93ff530..7cffb23 100644 --- a/python/restate/service.py +++ b/python/restate/service.py @@ -8,6 +8,8 @@ # directory of this repository or package, or at # https://github.com/restatedev/sdk-typescript/blob/main/LICENSE # + +# pylint: disable=R0917 """ This module defines the Service class for representing a restate service. """ diff --git a/python/restate/vm.py b/python/restate/vm.py index da35831..54b2551 100644 --- a/python/restate/vm.py +++ b/python/restate/vm.py @@ -11,7 +11,7 @@ """ wrap the restate._internal.PyVM class """ -# pylint: disable=E1101 +# pylint: disable=E1101,R0917 from dataclasses import dataclass import typing diff --git a/python/restate/workflow.py b/python/restate/workflow.py index 2614f8c..2e1f6b1 100644 --- a/python/restate/workflow.py +++ b/python/restate/workflow.py @@ -8,6 +8,8 @@ # directory of this repository or package, or at # https://github.com/restatedev/sdk-typescript/blob/main/LICENSE # + +# pylint: disable=R0917 """ This module defines the Service class for representing a restate service. """