1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-08 05:20:03 +03:00

Minor cleanup.

This commit is contained in:
Athanasius 2019-09-16 18:11:59 +01:00
parent acc78d2657
commit 5c59f32d15
2 changed files with 0 additions and 3 deletions

1
td.py
View File

@ -41,7 +41,6 @@ def export(data):
h.write(' + {}\n'.format(category).encode('utf-8'))
# corrections to commodity names can change the sort order
for commodity in sorted(bycategory[category], key=itemgetter('name')):
#h.write(' %-23s %7d %7d %9s%c %8s%c %s\n'.format(
h.write(' {:<23} {:7d} {:7d} {:9}{:1} {:8}{:1} {}\n'.format(
commodity['name'],
int(commodity['sellPrice']),

View File

@ -1,5 +1,3 @@
from builtins import map
from builtins import object
import os
from os.path import dirname, join
import sys