From d2639084381623f1076ae8b736a477de71268333 Mon Sep 17 00:00:00 2001 From: igalshilman Date: Fri, 4 Oct 2024 17:02:02 +0000 Subject: [PATCH] More lints --- python/restate/service.py | 2 ++ python/restate/vm.py | 2 +- python/restate/workflow.py | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) 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. """