|
|
@@ -25,6 +25,8 @@ def main() -> None:
|
|
|
to_sell: dict[str, int] = {}
|
|
|
price_limits: dict[str, int] = {}
|
|
|
for item in ship_inventory:
|
|
|
+ if item['Type'] == 'SHIPMENT':
|
|
|
+ continue
|
|
|
ticker = item['MaterialTicker']
|
|
|
print(f'{item["MaterialAmount"]:5} {ticker:3}:', end=' ')
|
|
|
have = item['MaterialAmount'] + warehouse_inventory.get(ticker, 0)
|