Skip to content

Commit bdab8a2

Browse files
committed
Handle review comments
1 parent 069afbf commit bdab8a2

3 files changed

Lines changed: 2 additions & 8 deletions

File tree

.github/workflows/ci-python-code-quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
pull_request:
55
types: [opened, synchronize]
66
branches:
7-
- main
7+
- develop
88
paths:
99
- "pyproject.toml"
1010
- "uv.lock"

centreon_mcp/utils/base.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,12 @@
33

44
from pydantic import BaseModel
55

6-
from centreon_mcp.utils.type import CentreonBaseModel, T
6+
from centreon_mcp.utils.type import T
77

88
O = TypeVar("O", bound="BaseOrder")
99
F = TypeVar("F", bound="BaseFilter")
1010

1111

12-
class ConstraintLink(BaseModel):
13-
cls: Type[CentreonBaseModel]
14-
object: str
15-
fields: list[str]
16-
17-
1812
class BaseOrder(BaseModel):
1913
order: Literal["ASC", "DESC"] = "ASC"
2014

File renamed without changes.

0 commit comments

Comments
 (0)