Skip to content

Commit 4fa6b79

Browse files
committed
Add ShadowStyle defaults
1 parent d97191e commit 4fa6b79

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

stubs/reportlab/reportlab/platypus/tables.pyi

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@ class TableStyle:
5656
def getCommands(self) -> list[_TableCommand]: ...
5757

5858
class ShadowStyle(NamedTuple):
59-
dx: int
60-
dy: int
61-
color0: _Color
62-
color1: _Color
63-
nshades: int
59+
dx: int = 10
60+
dy: int = -10
61+
color0: _Color = "grey"
62+
color1: _Color = "white"
63+
nshades: int = 30
6464

6565
class Table(Flowable):
6666
ident: str | None

0 commit comments

Comments
 (0)