From 8a94a57e781d73641531d18316dda787ceffb2ef Mon Sep 17 00:00:00 2001 From: A_D Date: Wed, 2 Jun 2021 21:46:52 +0200 Subject: [PATCH] Removed debug warnings and bool --- plugins/inara.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/plugins/inara.py b/plugins/inara.py index f9b202de..0577d626 100644 --- a/plugins/inara.py +++ b/plugins/inara.py @@ -1432,7 +1432,6 @@ def new_worker(): 'APIkey': creds.api_key, 'commanderName': creds.cmdr, 'commanderFrontierID': creds.fid, - 'isBeingDeveloped': True, # TODO: Remove once update is complete }, 'events': [ {'eventName': e.name, 'eventTimestamp': e.timestamp, 'eventData': e.data} for e in event_list @@ -1489,9 +1488,6 @@ def send_data(url: str, data: Mapping[str, Any]) -> bool: # noqa: CCR001 :param data: the data to POST :return: success state """ - # TODO: Remove this. Its here to ensure we dont forget that we're running test code - for x in range(20): - logger.info("INARA IS SENDING HEADERS THAT INDICATE DEV MODE!!!!!!!!!!!!!!!!!!!!!!!!!") r = this.session.post(url, data=json.dumps(data, separators=(',', ':')), timeout=_TIMEOUT) r.raise_for_status()