Skip to content

Commit e93110d

Browse files
committed
fixes pylint
1 parent 7d56e7b commit e93110d

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

packages/service-library/src/servicelib/rabbitmq/rpc_interfaces/webserver/functions/functions_rpc_interface.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import logging
2-
from typing import Annotated, Literal
32
import warnings
4-
from typing import Literal
3+
from typing import Annotated, Literal
54

65
from models_library.api_schemas_webserver import DEFAULT_WEBSERVER_RPC_NAMESPACE
76
from models_library.api_schemas_webserver.functions import (

packages/service-library/src/servicelib/rabbitmq/rpc_interfaces/webserver/v1/functions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@
4343
class FunctionsRpcApi(BaseRpcApi):
4444
"""RPC client for function-related operations."""
4545

46+
# pylint: disable=too-many-public-methods
47+
4648
def __init__(
4749
self,
4850
rpc_client: RabbitMQRPCClient,
@@ -64,8 +66,6 @@ def __init__(
6466
},
6567
)
6668

67-
# pylint: disable=too-many-public-methods
68-
6969
async def register_function(
7070
self,
7171
*,

0 commit comments

Comments
 (0)