Skip to content

Commit

Permalink
try to fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
yu23ki14 committed Oct 2, 2024
1 parent d542a76 commit a9f1580
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions common/birdxplorer_common/models.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,25 @@
from abc import ABC, abstractmethod
from datetime import datetime, timezone
from enum import Enum
from typing import Any, Dict, List, Literal, Optional, Type, TypeAlias, TypeVar, Union
from typing import (
Any,
Dict,
List,
Literal,
Optional,
Set,
Type,
TypeAlias,
TypeVar,
Union,
)

from pydantic import BaseModel as PydanticBaseModel
from pydantic import ConfigDict, GetCoreSchemaHandler, HttpUrl, TypeAdapter
from pydantic.alias_generators import to_camel
from pydantic_core import core_schema

IncEx: TypeAlias = "set[int] | set[str] | dict[int, IncEx] | dict[str, IncEx] | None"
IncEx: TypeAlias = Union[Set[int], Set[str], Dict[int, Any], Dict[str, Any], None]
StrT = TypeVar("StrT", bound="BaseString")
IntT = TypeVar("IntT", bound="BaseInt")
FloatT = TypeVar("FloatT", bound="BaseFloat")
Expand Down

0 comments on commit a9f1580

Please sign in to comment.