Skip to content

Commit e038774

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 49280cb commit e038774

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/virtualship/models/space_time_region.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
"""SpaceTimeRegion class."""
22

33
from datetime import datetime
4-
from typing import Annotated
4+
from typing import Annotated, Self
55

66
from pydantic import BaseModel, Field, model_validator
7-
from typing_extensions import Self
87

98
Longitude = Annotated[float, Field(..., ge=-180, le=180)]
109
Latitude = Annotated[float, Field(..., ge=-90, le=90)]

0 commit comments

Comments
 (0)