Skip to content

Commit 5462165

Browse files
Fix un-exported import references
1 parent 61ad25c commit 5462165

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/usethis/_integrations/ci/bitbucket/yaml.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
if TYPE_CHECKING:
1515
from pydantic import BaseModel
1616

17-
from usethis._integrations.pydantic.dump import ModelRepresentation
17+
from usethis._integrations.pydantic.typing_ import ModelRepresentation
18+
1819

1920
ORDER_BY_CLS: dict[type[BaseModel], list[str]] = {
2021
schema.PipelinesConfiguration: ["image", "clone", "definitions"],

src/usethis/_integrations/pre_commit/yaml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
if TYPE_CHECKING:
1616
from pydantic import BaseModel
1717

18-
from usethis._integrations.pydantic.dump import ModelRepresentation
18+
from usethis._integrations.pydantic.typing_ import ModelRepresentation
1919

2020
ORDER_BY_CLS: dict[type[BaseModel], list[str]] = {}
2121

0 commit comments

Comments
 (0)