1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-14 16:27:13 +03:00

Added missing BodyType init

This commit is contained in:
A_D 2021-06-02 11:58:33 +02:00
parent 2f684a91e3
commit 71afdf0bdb
No known key found for this signature in database
GPG Key ID: 4BE9EB7DF45076C4

View File

@ -163,6 +163,7 @@ class EDLogs(FileSystemEventHandler): # type: ignore # See below
'Taxi': None, # True whenever we are _in_ a taxi. ie, this is reset on Disembark etc.
'Dropship': None, # Best effort as to whether or not the above taxi is a dropship.
'Body': None,
'BodyType': None,
}
def start(self, root: 'tkinter.Tk') -> bool: # noqa: CCR001