File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
stubs/reportlab/reportlab/graphics/barcode Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -46,10 +46,10 @@ class DataMatrix(Barcode, _DMTXCheck):
46
46
def recalc (self ) -> None : ...
47
47
@property
48
48
def matrix (self ): ...
49
- @property # type: ignore[misc]
50
- def width (self ): ...
51
- @property # type: ignore[misc]
52
- def height (self ): ...
49
+ @property # type: ignore[misc] # TODO: for mypy < 1.16
50
+ def width (self ): ... # type: ignore[override]
51
+ @property # type: ignore[misc] # TODO: for mypy < 1.16
52
+ def height (self ): ... # type: ignore[override]
53
53
@property
54
54
def cellWidth (self ): ...
55
55
@property
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ class Ean13BarcodeWidget(PlotArea):
22
22
value : Incomplete
23
23
def __init__ (self , value : str = "123456789012" , ** kw ) -> None : ...
24
24
@property
25
- def width (self ): ...
25
+ def width (self ): ... # type: ignore[override]
26
26
def wrap (self , aW , aH ): ...
27
27
def draw (self ): ...
28
28
You can’t perform that action at this time.
0 commit comments