Skip to content

Commit

Permalink
Fix mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
joostlek committed Jul 21, 2023
1 parent bc81397 commit 2a1e460
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python_opensky/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
try:
from pydantic.v1 import BaseModel, Field
except ImportError:
from pydantic import BaseModel, Field # type: ignore[attr-defined]
from pydantic import BaseModel, Field # type: ignore[assignment]

from .const import AircraftCategory, PositionSource
from .exceptions import OpenSkyCoordinateError
Expand Down

0 comments on commit 2a1e460

Please sign in to comment.