mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-04-21 11:27:38 +03:00
Switch to "thing is None" on tests.
This commit is contained in:
parent
735e37e10e
commit
31203270bc
@ -271,12 +271,12 @@ Msg:\n{msg}''')
|
||||
:param is_beta: whether or not we're currently in beta mode
|
||||
"""
|
||||
modules: Dict[str, Any] = data['lastStarport'].get('modules')
|
||||
if not modules:
|
||||
if modules is None:
|
||||
logger.debug('modules was None')
|
||||
modules = {}
|
||||
|
||||
ships: Dict[str, Any] = data['lastStarport'].get('ships')
|
||||
if not ships:
|
||||
if ships is None:
|
||||
logger.debug('ships was None')
|
||||
ships = {'shipyard_list': {}, 'unavailable_list': []}
|
||||
|
||||
@ -322,12 +322,12 @@ Msg:\n{msg}''')
|
||||
:param is_beta: whether or not we are in beta mode
|
||||
"""
|
||||
modules: Dict[str, Any] = data['lastStarport'].get('modules')
|
||||
if not modules:
|
||||
if modules is None:
|
||||
logger.debug('modules was None')
|
||||
modules = {}
|
||||
|
||||
ships: Dict[str, Any] = data['lastStarport'].get('ships')
|
||||
if not ships:
|
||||
if ships is None:
|
||||
logger.debug('ships was None')
|
||||
ships = {'shipyard_list': {}, 'unavailable_list': []}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user