1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-06-03 17:10:59 +03:00

remove uneeded cast and fix bug in passed data

This commit is contained in:
A_D 2021-08-19 20:50:41 +02:00
parent 8134a04739
commit dac13216a0
No known key found for this signature in database
GPG Key ID: 4BE9EB7DF45076C4

View File

@ -407,7 +407,7 @@ def journal_entry( # noqa: C901, CCR001
if should_return: if should_return:
return return
entry = new_entry entry = new_entry
this.on_foot = state['OnFoot'] this.on_foot = state['OnFoot']
@ -646,14 +646,16 @@ def worker() -> None: # noqa: CCR001 C901 # Cant be broken up currently
retrying = 0 retrying = 0
while retrying < 3: while retrying < 3:
should_skip, new_item = killswitch.check_killswitch( should_skip, new_item = killswitch.check_killswitch(
'plugins.edsm.worker', item if item is not None else {}, logger 'plugins.edsm.worker',
item if item is not None else cast(Tuple[str, Mapping[str, Any]], ("", {})),
logger
) )
if should_skip: if should_skip:
break break
if item is not None: if item is not None:
item = cast(Tuple[str, Mapping[str, Any]], new_item) item = new_item
try: try:
if item and entry['event'] not in this.discarded_events: if item and entry['event'] not in this.discarded_events:
@ -669,7 +671,7 @@ def worker() -> None: # noqa: CCR001 C901 # Cant be broken up currently
if skip: if skip:
continue continue
new_pending.append(cast(Mapping[str, Any], new)) new_pending.append(new)
pending = new_pending pending = new_pending