@@ -328,7 +328,7 @@ class _Style:
328
328
def register (cls , name : str , style : type ) -> None : ...
329
329
330
330
class BoxStyle (_Style ):
331
- class Square :
331
+ class Square ( BoxStyle ) :
332
332
pad : float
333
333
def __init__ (self , pad : float = ...) -> None : ...
334
334
def __call__ (
@@ -340,7 +340,7 @@ class BoxStyle(_Style):
340
340
mutation_size : float ,
341
341
) -> Path : ...
342
342
343
- class Circle :
343
+ class Circle ( BoxStyle ) :
344
344
pad : float
345
345
def __init__ (self , pad : float = ...) -> None : ...
346
346
def __call__ (
@@ -352,7 +352,7 @@ class BoxStyle(_Style):
352
352
mutation_size : float ,
353
353
) -> Path : ...
354
354
355
- class Ellipse :
355
+ class Ellipse ( BoxStyle ) :
356
356
pad : float
357
357
def __init__ (self , pad : float = ...) -> None : ...
358
358
def __call__ (
@@ -364,7 +364,7 @@ class BoxStyle(_Style):
364
364
mutation_size : float ,
365
365
) -> Path : ...
366
366
367
- class LArrow :
367
+ class LArrow ( BoxStyle ) :
368
368
pad : float
369
369
def __init__ (self , pad : float = ...) -> None : ...
370
370
def __call__ (
@@ -386,7 +386,7 @@ class BoxStyle(_Style):
386
386
mutation_size : float ,
387
387
) -> Path : ...
388
388
389
- class DArrow :
389
+ class DArrow ( BoxStyle ) :
390
390
pad : float
391
391
def __init__ (self , pad : float = ...) -> None : ...
392
392
def __call__ (
@@ -398,7 +398,7 @@ class BoxStyle(_Style):
398
398
mutation_size : float ,
399
399
) -> Path : ...
400
400
401
- class Round :
401
+ class Round ( BoxStyle ) :
402
402
pad : float
403
403
rounding_size : float | None
404
404
def __init__ (
@@ -413,7 +413,7 @@ class BoxStyle(_Style):
413
413
mutation_size : float ,
414
414
) -> Path : ...
415
415
416
- class Round4 :
416
+ class Round4 ( BoxStyle ) :
417
417
pad : float
418
418
rounding_size : float | None
419
419
def __init__ (
@@ -428,7 +428,7 @@ class BoxStyle(_Style):
428
428
mutation_size : float ,
429
429
) -> Path : ...
430
430
431
- class Sawtooth :
431
+ class Sawtooth ( BoxStyle ) :
432
432
pad : float
433
433
tooth_size : float | None
434
434
def __init__ (
@@ -454,7 +454,7 @@ class BoxStyle(_Style):
454
454
) -> Path : ...
455
455
456
456
class ConnectionStyle (_Style ):
457
- class _Base :
457
+ class _Base ( ConnectionStyle ) :
458
458
class SimpleEvent :
459
459
def __init__ (self , xy : tuple [float , float ]) -> None : ...
460
460
@@ -529,7 +529,7 @@ class ConnectionStyle(_Style):
529
529
) -> Path : ...
530
530
531
531
class ArrowStyle (_Style ):
532
- class _Base :
532
+ class _Base ( ArrowStyle ) :
533
533
@staticmethod
534
534
def ensure_quadratic_bezier (path : Path ) -> list [float ]: ...
535
535
def transmute (
0 commit comments