Improve conductor table rendering
This commit is contained in:
parent
238bc2585e
commit
1f8d8b3f8d
@ -283,8 +283,10 @@ def gv_conductor_table(cable) -> Table:
|
|||||||
|
|
||||||
cells_above = [
|
cells_above = [
|
||||||
Td(" " + ", ".join(ins), align="left"),
|
Td(" " + ", ".join(ins), align="left"),
|
||||||
|
Td(" "), # increase cell spacing here
|
||||||
Td(bom_bubble(wire.bom_id)) if cable.category == "bundle" else None,
|
Td(bom_bubble(wire.bom_id)) if cable.category == "bundle" else None,
|
||||||
Td(":".join([wi for wi in wireinfo if wi is not None and wi != ""])),
|
Td(":".join([wi for wi in wireinfo if wi is not None and wi != ""])),
|
||||||
|
Td(" "), # increase cell spacing here
|
||||||
Td(", ".join(outs) + " ", align="right"),
|
Td(", ".join(outs) + " ", align="right"),
|
||||||
]
|
]
|
||||||
cells_above = [cell for cell in cells_above if cell is not None]
|
cells_above = [cell for cell in cells_above if cell is not None]
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user