Skip to content

Commit 1370608

Browse files
committed
test
1 parent ad99bd3 commit 1370608

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

datamodel/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
__title__ = 'python-datamodel'
55
__description__ = ('simple library based on python +3.8 to use Dataclass-syntax'
66
'for interacting with Data')
7-
__version__ = '0.8.3'
7+
__version__ = '0.8.4'
88
__author__ = 'Jesus Lara'
99
__author_email__ = '[email protected]'
1010
__license__ = 'BSD'

tests/test_validations.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,8 @@ class Actor(BaseModel):
162162
userid: uuid.UUID = Column(required=True, primary_key=True, default=auto_uuid)
163163
age: int = Column(default=def_age)
164164
name: str
165-
account: Union[Account, List[Account]]
165+
# account: Union[Account, List[Account]]
166+
account: List[Account]
166167

167168
def __str__(self) -> str:
168169
return f'<{self.name}: {self.userid}>'

0 commit comments

Comments
 (0)