Skip to content

Commit 2a08047

Browse files
committed
feat(lab-4021): deactivate too-many-public-methods for domain api
1 parent 79247fe commit 2a08047

File tree

11 files changed

+11
-3
lines changed

11 files changed

+11
-3
lines changed

src/kili/domain_api/assets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""Assets domain namespace for the Kili Python SDK."""
2-
# pylint: disable=too-many-lines
2+
# pylint: disable=too-many-lines,too-many-public-methods
33

44
import warnings
55
from collections.abc import Generator

src/kili/domain_api/exports.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Tags domain namespace for the Kili Python SDK."""
2+
# pylint: disable=too-many-public-methods
23

34
from typing import TYPE_CHECKING, Any, Optional, TypedDict, Union
45

src/kili/domain_api/issues.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
This module provides a comprehensive interface for issue-related operations
44
including creation, querying, status management, and lifecycle operations.
55
"""
6+
# pylint: disable=too-many-public-methods
67

78
from collections.abc import Generator
89
from itertools import repeat

src/kili/domain_api/labels.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# pylint: disable=too-many-lines
1+
# pylint: disable=too-many-lines,too-many-public-methods
22
"""Labels domain namespace for the Kili Python SDK.
33
44
This module provides a comprehensive interface for label-related operations

src/kili/domain_api/organizations.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Organizations domain namespace for the Kili Python SDK."""
2+
# pylint: disable=too-many-public-methods
23

34
from collections.abc import Generator
45
from datetime import datetime

src/kili/domain_api/plugins.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Plugins domain namespace for the Kili Python SDK."""
2+
# pylint: disable=too-many-public-methods
23

34
from datetime import datetime
45
from typing import List, Optional

src/kili/domain_api/projects.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
This module provides a comprehensive interface for project-related operations
44
including lifecycle management, user management, workflow configuration, and versioning.
55
"""
6+
# pylint: disable=too-many-public-methods
67

78
from collections.abc import Generator, Iterable, Sequence
89
from functools import cached_property

src/kili/domain_api/questions.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
This module provides a comprehensive interface for question-related operations
44
including creation, querying, status management, and lifecycle operations.
55
"""
6+
# pylint: disable=too-many-public-methods
67

78
from collections.abc import Generator
89
from itertools import repeat

src/kili/domain_api/storages.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""Storages domain namespace for the Kili Python SDK."""
2-
# pylint: disable=too-many-lines
2+
# pylint: disable=too-many-lines,too-many-public-methods
33

44
from collections.abc import Generator
55
from functools import cached_property

src/kili/domain_api/tags.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Tags domain namespace for the Kili Python SDK."""
2+
# pylint: disable=too-many-public-methods
23

34
from typing import List, Literal, Optional
45

0 commit comments

Comments
 (0)