Simple address table
This commit is contained in:
parent
6fbce729b4
commit
bffdbd2671
3 changed files with 36 additions and 1 deletions
|
@ -12,4 +12,9 @@ class CodeSnippet(Paragraph):
|
|||
)
|
||||
|
||||
def __init__(self, code):
|
||||
Paragraph.__init__(self, code, self.style)
|
||||
Paragraph.__init__(self, code, self.style)
|
||||
|
||||
|
||||
class AddressTable(Table):
|
||||
def __init__(self, data, horizontal_align=None):
|
||||
Table.__init__(self, data, hAlign=horizontal_align)
|
Loading…
Add table
Add a link
Reference in a new issue