1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-13 15:57:14 +03:00

removed oneline statements

This commit is contained in:
A_D 2020-07-13 05:59:29 +02:00 committed by Athanasius
parent a7cf83d1e5
commit 02d205fbee

View File

@ -68,7 +68,8 @@ def addcommodities(data):
# keep a summary of modules found
def addmodules(data):
if not data['lastStarport'].get('modules'): return
if not data['lastStarport'].get('modules'):
return
outfile = 'outfitting.csv'
modules = {}
@ -85,7 +86,8 @@ def addmodules(data):
for key, module in data['lastStarport'].get('modules').items():
# sanity check
if int(key) != module.get('id'): raise AssertionError('id: %s!=%s' % (key, module['id']))
if int(key) != module.get('id'):
raise AssertionError('id: %s!=%s' % (key, module['id']))
try:
new = outfitting.lookup(module, companion.ship_map, True)
@ -127,7 +129,8 @@ def addmodules(data):
# keep a summary of ships found
def addships(data):
if not data['lastStarport'].get('ships'): return
if not data['lastStarport'].get('ships'):
return
shipfile = 'shipyard.csv'
ships = {}