We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0062db8 commit 632a9adCopy full SHA for 632a9ad
1 file changed
stubs/reportlab/reportlab/platypus/tables.pyi
@@ -56,8 +56,8 @@ class TableStyle:
56
def getCommands(self) -> list[_TableCommand]: ...
57
58
class ShadowStyle(NamedTuple):
59
- dx: Incomplete = 10
60
- dy: Incomplete = -10
+ dx: int | Incomplete = 10 # TODO: is either `int` or `float`
+ dy: int | Incomplete = -10 # TODO: is either `int` or `float`
61
color0: _Color = "grey"
62
color1: _Color = "white"
63
nshades: int = 30
0 commit comments