Skip to content

Commit 2a145ba

Browse files
committed
fix(pylint): Ignore R0915(too-many-statements)
1 parent c50d010 commit 2a145ba

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sdk/ai/azure-ai-projects/azure/ai/projects/_patch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626

2727
class AIProjectClient(ClientGenerated): # pylint: disable=client-accepts-api-version-keyword,too-many-instance-attributes
28-
def __init__( # pylint: disable=super-init-not-called
28+
def __init__( # pylint: disable=super-init-not-called,too-many-statements
2929
self,
3030
endpoint: str,
3131
subscription_id: str,

sdk/ai/azure-ai-projects/azure/ai/projects/aio/_patch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232

3333
class AIProjectClient(ClientGenerated): # pylint: disable=client-accepts-api-version-keyword,too-many-instance-attributes
34-
def __init__( # pylint: disable=super-init-not-called
34+
def __init__( # pylint: disable=super-init-not-called,too-many-statements
3535
self,
3636
endpoint: str,
3737
subscription_id: str,

0 commit comments

Comments
 (0)