@@ -2173,7 +2173,7 @@ def get_link_scene_node():
2173
2173
# --------------------------------------------------------------------- #
2174
2174
2175
2175
def _get_graphical_backend (
2176
- self , backend : Union [L ["swift" , "pyplot" , "pyplot2" ], None ] = None
2176
+ self , backend : Union [L ["swift" , "pyplot" , "pyplot2" ], None ] = None # noqa
2177
2177
) -> Union [Swift , PyPlot , PyPlot2 ]:
2178
2178
default = self .default_backend
2179
2179
@@ -2234,7 +2234,7 @@ def _get_graphical_backend(
2234
2234
def plot (
2235
2235
self ,
2236
2236
q : ArrayLike ,
2237
- backend : Union [L ["swift" , "pyplot" , "pyplot2" ], None ] = None ,
2237
+ backend : Union [L ["swift" , "pyplot" , "pyplot2" ], None ] = None , # noqa
2238
2238
block : bool = False ,
2239
2239
dt : float = 0.050 ,
2240
2240
limits : Union [ArrayLike , None ] = None ,
@@ -2393,9 +2393,9 @@ def plot(
2393
2393
def fellipse (
2394
2394
self ,
2395
2395
q : ArrayLike ,
2396
- opt : L ["trans" , "rot" ] = "trans" ,
2397
- unit : L ["rad" , "deg" ] = "rad" ,
2398
- centre : Union [L ["ee" ], ArrayLike ] = [0 , 0 , 0 ],
2396
+ opt : L ["trans" , "rot" ] = "trans" , # noqa
2397
+ unit : L ["rad" , "deg" ] = "rad" , # noqa
2398
+ centre : Union [L ["ee" ], ArrayLike ] = [0 , 0 , 0 ], # noqa
2399
2399
) -> EllipsePlot :
2400
2400
"""
2401
2401
Create a force ellipsoid object for plotting with PyPlot
@@ -2444,9 +2444,9 @@ def fellipse(
2444
2444
def vellipse (
2445
2445
self ,
2446
2446
q : ArrayLike ,
2447
- opt : L ["trans" , "rot" ] = "trans" ,
2448
- unit : L ["rad" , "deg" ] = "rad" ,
2449
- centre : Union [L ["ee" ], ArrayLike ] = [0 , 0 , 0 ],
2447
+ opt : L ["trans" , "rot" ] = "trans" , # noqa
2448
+ unit : L ["rad" , "deg" ] = "rad" , # noqa
2449
+ centre : Union [L ["ee" ], ArrayLike ] = [0 , 0 , 0 ], # noqa
2450
2450
scale : float = 0.1 ,
2451
2451
) -> EllipsePlot :
2452
2452
"""
@@ -2565,8 +2565,8 @@ def plot_fellipse(
2565
2565
block : bool = True ,
2566
2566
fellipse : Union [EllipsePlot , None ] = None ,
2567
2567
limits : Union [ArrayLike , None ] = None ,
2568
- opt : L ["trans" , "rot" ] = "trans" ,
2569
- centre : Union [L ["ee" ], ArrayLike ] = [0 , 0 , 0 ],
2568
+ opt : L ["trans" , "rot" ] = "trans" , # noqa
2569
+ centre : Union [L ["ee" ], ArrayLike ] = [0 , 0 , 0 ], # noqa
2570
2570
jointaxes : bool = True ,
2571
2571
eeframe : bool = True ,
2572
2572
shadow : bool = True ,
@@ -2661,8 +2661,8 @@ def plot_vellipse(
2661
2661
block : bool = True ,
2662
2662
vellipse : Union [EllipsePlot , None ] = None ,
2663
2663
limits : Union [ArrayLike , None ] = None ,
2664
- opt : L ["trans" , "rot" ] = "trans" ,
2665
- centre : Union [L ["ee" ], ArrayLike ] = [0 , 0 , 0 ],
2664
+ opt : L ["trans" , "rot" ] = "trans" , # noqa
2665
+ centre : Union [L ["ee" ], ArrayLike ] = [0 , 0 , 0 ], # noqa
2666
2666
jointaxes : bool = True ,
2667
2667
eeframe : bool = True ,
2668
2668
shadow : bool = True ,
@@ -2756,7 +2756,7 @@ def teach(
2756
2756
limits : Union [ArrayLike , None ] = None ,
2757
2757
vellipse : bool = False ,
2758
2758
fellipse : bool = False ,
2759
- backend : Union [L ["pyplot" , "pyplot2" ], None ] = None ,
2759
+ backend : Union [L ["pyplot" , "pyplot2" ], None ] = None , # noqa
2760
2760
) -> Union [PyPlot , PyPlot2 ]:
2761
2761
"""
2762
2762
Graphical teach pendant
@@ -2923,7 +2923,7 @@ def dotfile(
2923
2923
self ,
2924
2924
filename : Union [str , IO [str ]],
2925
2925
etsbox : bool = False ,
2926
- ets : L ["full" , "brief" ] = "full" ,
2926
+ ets : L ["full" , "brief" ] = "full" , # noqa
2927
2927
jtype : bool = False ,
2928
2928
static : bool = True ,
2929
2929
):
0 commit comments