7 lines
166 B
Python
7 lines
166 B
Python
from formats import print_bill
|
|
from tools import load_json
|
|
|
|
if __name__ == "__main__":
|
|
data = load_json('./test/fixtures/bill.json')
|
|
print_bill(data, "", "")
|