Skip to content

Commit

Permalink
imports Annotated from typing-extensions (#114)
Browse files Browse the repository at this point in the history
* imports Annotated from typing-extensions

* removes tyoing extensions from pyproject.toml
  • Loading branch information
mekhlakapoor authored Aug 15, 2024
1 parent df88631 commit e988b4e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/aind_metadata_mapper/bergamo/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class JobSettings(BaseSettings):
fov_coordinate_ap: float = Decimal("1.5")
fov_reference: str = "Bregma"

starting_lickport_position: list[float] = [
starting_lickport_position: List[float] = [
0,
-6,
0,
Expand Down
3 changes: 2 additions & 1 deletion src/aind_metadata_mapper/models.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
"""Module to define models for Gather Metadata Job"""

from pathlib import Path
from typing import Annotated, List, Optional, Union
from typing import List, Optional, Union
from typing_extensions import Annotated

from aind_data_schema.core.processing import PipelineProcess
from aind_data_schema_models.modalities import Modality
Expand Down

0 comments on commit e988b4e

Please sign in to comment.