Skip to content

Commit

Permalink
style: remove unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
patricklatimer committed Jun 6, 2024
1 parent 94aa8b3 commit e39842d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_slimsmodel.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
""" Tests the generic SlimsBaseModel"""

from datetime import datetime, timezone
from datetime import datetime
from typing import Annotated
import unittest

Expand Down Expand Up @@ -91,6 +91,8 @@ def test_alias(self):
"""Test aliasing of fields"""

class TestModelAlias(SlimsBaseModel):
"""model with field aliases"""

field: str = Field(..., alias="alias")
pk: int = Field(None, alias="cntn_pk")

Expand Down

0 comments on commit e39842d

Please sign in to comment.