@@ -123,7 +123,7 @@ def apycart3_to_cart3(obj: apyc.CartesianRepresentation, /) -> cx.CartesianPos3D
123123 )
124124
125125 """
126- return cast (cx .CartesianPos3D , cx .CartesianPos3D .from_ (obj ))
126+ return cast (" cx.CartesianPos3D" , cx .CartesianPos3D .from_ (obj ))
127127
128128
129129# =====================================
@@ -177,7 +177,7 @@ def apycyl_to_cyl(obj: apyc.CylindricalRepresentation, /) -> cx.vecs.Cylindrical
177177 )
178178
179179 """
180- return cast (cx .vecs .CylindricalPos , cx .vecs .CylindricalPos .from_ (obj ))
180+ return cast (" cx.vecs.CylindricalPos" , cx .vecs .CylindricalPos .from_ (obj ))
181181
182182
183183# =====================================
@@ -228,7 +228,7 @@ def apysph_to_sph(obj: apyc.PhysicsSphericalRepresentation, /) -> cx.SphericalPo
228228 )
229229
230230 """
231- return cast (cx .SphericalPos , cx .SphericalPos .from_ (obj ))
231+ return cast (" cx.SphericalPos" , cx .SphericalPos .from_ (obj ))
232232
233233
234234# =====================================
@@ -284,7 +284,7 @@ def apysph_to_lonlatsph(
284284 )
285285
286286 """
287- return cast (cx .vecs .LonLatSphericalPos , cx .vecs .LonLatSphericalPos .from_ (obj ))
287+ return cast (" cx.vecs.LonLatSphericalPos" , cx .vecs .LonLatSphericalPos .from_ (obj ))
288288
289289
290290# =====================================
@@ -334,7 +334,7 @@ def apycart3_to_diffcart3(obj: apyc.CartesianDifferential, /) -> cx.CartesianVel
334334 )
335335
336336 """
337- return cast (cx .CartesianVel3D , cx .CartesianVel3D .from_ (obj ))
337+ return cast (" cx.CartesianVel3D" , cx .CartesianVel3D .from_ (obj ))
338338
339339
340340# =====================================
@@ -393,7 +393,7 @@ def apycyl_to_diffcyl(obj: apyc.CylindricalDifferential, /) -> cx.vecs.Cylindric
393393 )
394394
395395 """
396- return cast (cx .vecs .CylindricalVel , cx .vecs .CylindricalVel .from_ (obj ))
396+ return cast (" cx.vecs.CylindricalVel" , cx .vecs .CylindricalVel .from_ (obj ))
397397
398398
399399# =====================================
@@ -451,7 +451,7 @@ def apysph_to_diffsph(obj: apyc.PhysicsSphericalDifferential, /) -> cx.Spherical
451451 )
452452
453453 """
454- return cast (cx .SphericalVel , cx .SphericalVel .from_ (obj ))
454+ return cast (" cx.SphericalVel" , cx .SphericalVel .from_ (obj ))
455455
456456
457457# =====================================
@@ -513,7 +513,7 @@ def apysph_to_difflonlatsph(
513513 )
514514
515515 """
516- return cast (cx .vecs .LonLatSphericalVel , cx .vecs .LonLatSphericalVel .from_ (obj ))
516+ return cast (" cx.vecs.LonLatSphericalVel" , cx .vecs .LonLatSphericalVel .from_ (obj ))
517517
518518
519519# =====================================
@@ -576,4 +576,6 @@ def apysph_to_diffloncoslatsph(
576576 )
577577
578578 """
579- return cast (cx .vecs .LonCosLatSphericalVel , cx .vecs .LonCosLatSphericalVel .from_ (obj ))
579+ return cast (
580+ "cx.vecs.LonCosLatSphericalVel" , cx .vecs .LonCosLatSphericalVel .from_ (obj )
581+ )
0 commit comments