diff --git a/plugins/eddn.py b/plugins/eddn.py index 33ee1802..3cd2d819 100644 --- a/plugins/eddn.py +++ b/plugins/eddn.py @@ -635,8 +635,8 @@ class EDDN: :param data: a dict containing the starport data :param is_beta: whether or not we're currently in beta mode """ - should_return: bool = False - new_data: Dict[str, Any] = {} + should_return: bool + new_data: Dict[str, Any] should_return, new_data = killswitch.check_killswitch('capi.request./market', {}) if should_return: logger.warning("capi.request./market has been disabled by killswitch. Returning.") @@ -768,8 +768,8 @@ class EDDN: :param data: dict containing the outfitting data :param is_beta: whether or not we're currently in beta mode """ - should_return: bool = False - new_data: Dict[str, Any] = {} + should_return: bool + new_data: Dict[str, Any] should_return, new_data = killswitch.check_killswitch('capi.request./shipyard', {}) if should_return: logger.warning("capi.request./shipyard has been disabled by killswitch. Returning.") @@ -836,8 +836,8 @@ class EDDN: :param data: dict containing the shipyard data :param is_beta: whether or not we are in beta mode """ - should_return: bool = False - new_data: Dict[str, Any] = {} + should_return: bool + new_data: Dict[str, Any] should_return, new_data = killswitch.check_killswitch('capi.request./shipyard', {}) if should_return: logger.warning("capi.request./shipyard has been disabled by killswitch. Returning.")