Skip to content
This repository has been archived by the owner on Dec 16, 2024. It is now read-only.

Commit

Permalink
Fix mypy issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Stoops committed Nov 25, 2024
1 parent a175ec5 commit 5202c13
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
12 changes: 8 additions & 4 deletions tests/test_properties.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,14 @@
import pytest
from pydantic import ValidationError

from czml3.enums import ArcTypes, ClassificationTypes, ShadowModes
from czml3.enums import (
ArcTypes,
ClassificationTypes,
ColorBlendModes,
CornerTypes,
HeightReferences,
ShadowModes,
)
from czml3.properties import (
ArcType,
Box,
Expand All @@ -12,16 +19,13 @@
ClassificationType,
Color,
ColorBlendMode,
ColorBlendModes,
CornerType,
CornerTypes,
DistanceDisplayCondition,
Ellipsoid,
EllipsoidRadii,
EyeOffset,
GridMaterial,
HeightReference,
HeightReferences,
ImageMaterial,
Label,
Material,
Expand Down
2 changes: 1 addition & 1 deletion tests/test_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ def test_cartographic_degrees_value():
1
]"""
)
result = CartographicRadiansValue(values=[0, 0, 1])
result = CartographicDegreesValue(values=[0, 0, 1])
assert (
str(result)
== """[
Expand Down

0 comments on commit 5202c13

Please sign in to comment.