diff --git a/characters.py b/characters.py index de7beb3..883aaf2 100644 --- a/characters.py +++ b/characters.py @@ -65,12 +65,14 @@ def inventory(soup): print('Total use of this storage space: {}'.format(quantity_total)) print('-----') - print('Item total summary:') - for item in item_tracking.items(): - item_code = item[0] - item_name = id_dict[item_code] - item_quantity = item[1] - print('{:04} - {} - {}'.format(item_code, item_name, item_quantity)) + + print('Item total summary:') + for item in item_tracking.items(): + item_code = item[0] + item_name = id_dict[item_code] + item_quantity = item[1] + print('{:04} - {} - {}'.format(item_code, item_name, item_quantity)) + def main():