Skip to content

Commit

Permalink
fix imports for ISO8601 date
Browse files Browse the repository at this point in the history
  • Loading branch information
crbaker89 committed Feb 3, 2022
1 parent e457c7f commit 19044cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pydantic_schemaorg/SchemaOrgBase.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from pydantic import BaseModel, Field, StrictBool, AnyUrl
from pydantic.typing import update_model_forward_refs

from ISO8601.ISO8601Date import ISO8601Date
from pydantic_schemaorg.ISO8601.ISO8601Date import ISO8601Date
from pydantic_schemaorg.__types__ import types

updated_models=set()
Expand Down
2 changes: 1 addition & 1 deletion src/templates/schema_org_base.py.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ from typing import Any, Optional, ForwardRef, List, Union
from pydantic import BaseModel, Field, StrictBool, AnyUrl
from pydantic.typing import update_model_forward_refs

from ISO8601.ISO8601Date import ISO8601Date
from pydantic_schemaorg.ISO8601.ISO8601Date import ISO8601Date
from pydantic_schemaorg.__types__ import types

updated_models=set()
Expand Down

0 comments on commit 19044cf

Please sign in to comment.