mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-04-21 11:27:38 +03:00
removed uneeded parens
This commit is contained in:
parent
14295ce9e8
commit
566f52e61f
2
EDMC.py
2
EDMC.py
@ -218,7 +218,7 @@ def main():
|
||||
sys.exit(EXIT_LAGGING)
|
||||
|
||||
# Ignore possibly missing shipyard info
|
||||
elif not (data['lastStarport'].get('commodities') or data['lastStarport'].get('modules')):
|
||||
elif not data['lastStarport'].get('commodities') or data['lastStarport'].get('modules'):
|
||||
print("Station doesn't have anything!", file=sys.stderr)
|
||||
sys.exit(EXIT_SUCCESS)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user