fix mypy (#267)
* better default types Signed-off-by: Jess Frazelle <github@jessfraz.com> * more mypy fixes Signed-off-by: Jess Frazelle <github@jessfraz.com> * more fixes for mypy Signed-off-by: Jess Frazelle <github@jessfraz.com> * fix mypy; Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * fix mypy; Signed-off-by: Jess Frazelle <github@jessfraz.com> * I have generated the latest API! --------- Signed-off-by: Jess Frazelle <github@jessfraz.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
@ -13,10 +13,10 @@ class Transform(BaseModel):
|
||||
"angle": {"unit": "degrees", "value": 0.0},
|
||||
"axis": {"x": 0.0, "y": 0.0, "z": 1.0},
|
||||
"origin": {"type": "local"},
|
||||
}
|
||||
} # type: ignore
|
||||
|
||||
scale: Point3d = {"x": 1.0, "y": 1.0, "z": 1.0}
|
||||
scale: Point3d = {"x": 1.0, "y": 1.0, "z": 1.0} # type: ignore
|
||||
|
||||
translate: Point3d = {"x": 0.0, "y": 0.0, "z": 0.0}
|
||||
translate: Point3d = {"x": 0.0, "y": 0.0, "z": 0.0} # type: ignore
|
||||
|
||||
model_config = ConfigDict(protected_namespaces=())
|
||||
|
Reference in New Issue
Block a user