You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/isaacus/types/ilgs/ilgs_v1_date.py
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -3,13 +3,13 @@
3
3
fromtypingimportList, Optional
4
4
fromtyping_extensionsimportLiteral
5
5
6
-
from .spanimportSpan
7
-
from .._modelsimportBaseModel
6
+
from ..._modelsimportBaseModel
7
+
from .ilgs_v1_spanimportILGSv1Span
8
8
9
-
__all__= ["Date"]
9
+
__all__= ["ILGSv1Date"]
10
10
11
11
12
-
classDate(BaseModel):
12
+
classILGSv1Date(BaseModel):
13
13
"""
14
14
A date identified in a document belonging to one of the following types: `creation`, `signature`, `effective`, `expiry`, `delivery`, `renewal`, `payment`, `birth`, or `death`.
15
15
@@ -63,7 +63,7 @@ class Date(BaseModel):
63
63
`{index}` is a non-negative incrementing integer starting from zero.
64
64
"""
65
65
66
-
mentions: List[Span]
66
+
mentions: List[ILGSv1Span]
67
67
"""
68
68
An array of one or more spans within the document's text where the date is
0 commit comments