8 lines
230 B
Python
8 lines
230 B
Python
from formats import CustomerOrderPrinter
|
|
from tools import load_json
|
|
|
|
if __name__ == "__main__":
|
|
data = load_json('./test/fixtures/customer_order.json')
|
|
printer = CustomerOrderPrinter("")
|
|
printer.print_order(data, "")
|