1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-15 00:30:33 +03:00

removed unicode specifier from string

python3 strings are always unicode
This commit is contained in:
A_D 2020-07-26 20:14:08 +02:00
parent 07c43d3057
commit 7b231fb244
No known key found for this signature in database
GPG Key ID: 4BE9EB7DF45076C4

View File

@ -30,7 +30,7 @@ import requests
from config import config
STATION_UNDOCKED: str = u'×' # "Station" name to display when not docked = U+00D7
STATION_UNDOCKED: str = '×' # "Station" name to display when not docked = U+00D7
this: Any = sys.modules[__name__] # For holding module globals
@ -39,7 +39,7 @@ this.system_link: Optional[str] = None
this.system: Optional[str] = None
this.system_address: Optional[str] = None
this.system_population: Optional[int] = None
this.station_link = None # tk thing, not annotated
this.station_link = None # tk thing, not annotated
this.station: Optional[str] = None
this.station_marketid: Optional[int] = None