Skip to content

Commit 36158c8

Browse files
committed
Fix conflict
1 parent 8ca0a8c commit 36158c8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

infrahub_sdk/schema/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@
7474
"SchemaModel",
7575
"SchemaRoot",
7676
"SchemaRootAPI",
77-
"from_pydantic",
7877
"TemplateSchemaAPI",
78+
"from_pydantic",
7979
]
8080

8181

tests/unit/sdk/test_pydantic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class MyAllInOneModel(BaseModel):
3535
is_active: bool
3636
opt_age: int | None = None
3737
default_name: str = "some_default"
38-
old_opt_age: Optional[int] = None # noqa: UP007
38+
old_opt_age: Optional[int] = None
3939

4040

4141
class AcmeTag(BaseModel):

0 commit comments

Comments
 (0)