py3 print ...

main
jebba 2022-01-15 01:04:06 -07:00
parent c84567514b
commit 0459f39b68
2 changed files with 2 additions and 2 deletions

2
pcb.py
View File

@ -68,7 +68,7 @@ def main():
best_pcb.print_netlist()
best_pcb.print_stats()
else:
print []
print([])
if __name__ == '__main__':
main()

View File

@ -144,7 +144,7 @@ class Pcb():
def print_netlist(self):
for net in self.netlist:
net.print_net()
print []
print([])
sys.stdout.flush()
def print_pcb(self):