Skip to content

Commit 770998f

Browse files
author
Josselin BUILS
committed
chore(LAB-4339): fix pylint issues
1 parent b9ba155 commit 770998f

File tree

12 files changed

+6
-11
lines changed

12 files changed

+6
-11
lines changed

src/kili/domain/asset/helpers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,6 @@ def check_asset_workflow_arguments(
6868
)
6969
if step_name_and_status_in is not None or step_name_and_status_not_in is not None:
7070
raise ValueError(
71-
"Filters step_name_and_status_in and/or step_name_and_status_not_in given : use filter status_in for this project."
71+
"Filters step_name_and_status_in and/or step_name_and_status_not_in given : use filter "
72+
"status_in for this project."
7273
)

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,too-many-public-methods
2+
# pylint: disable=too-many-lines
33

44
import warnings
55
from collections.abc import Generator

src/kili/domain_api/issues.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
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
76

87
from collections.abc import Generator
98
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,too-many-public-methods
1+
# pylint: disable=too-many-lines
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: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
"""Organizations domain namespace for the Kili Python SDK."""
2-
# pylint: disable=too-many-public-methods
32

43
from collections.abc import Generator
54
from datetime import datetime

src/kili/domain_api/plugins.py

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

43
from datetime import datetime
54
from typing import List, Optional

src/kili/domain_api/projects.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
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
76

87
from collections.abc import Generator, Iterable, Sequence
98
from functools import cached_property

src/kili/domain_api/questions.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
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
76

87
from collections.abc import Generator
98
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,too-many-public-methods
2+
# pylint: disable=too-many-lines
33

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

src/kili/domain_api/tags.py

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

43
from typing import List, Literal, Optional
54

0 commit comments

Comments
 (0)