1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-12 23:37:14 +03:00

[Fix] Ignore Typing of Potential Null

This commit is contained in:
David Sangrey 2025-02-08 12:15:28 -05:00
parent c6fd18f644
commit b30eca7979
No known key found for this signature in database
GPG Key ID: 3AEADBB0186884BC

View File

@ -710,8 +710,8 @@ class EDLogs(FileSystemEventHandler):
'Ship': entry["Ship"],
'ShipName': entry['ShipName'],
'ShipIdent': entry['ShipIdent'],
'HullValue': entry.get('HullValue'),
'ModulesValue': entry.get('ModulesValue'),
'HullValue': entry.get('HullValue'), # type: ignore
'ModulesValue': entry.get('ModulesValue'), # type: ignore
'Rebuy': entry['Rebuy'],
'MaxJumpRange': entry['MaxJumpRange'],
'UnladenMass': entry['UnladenMass'],