From 7b231fb244429dc5c2dfc720bc2faf4892d63e0e Mon Sep 17 00:00:00 2001 From: A_D Date: Sun, 26 Jul 2020 20:14:08 +0200 Subject: [PATCH] removed unicode specifier from string python3 strings are always unicode --- plugins/eddb.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/eddb.py b/plugins/eddb.py index b8c9c9d1..83f4be59 100644 --- a/plugins/eddb.py +++ b/plugins/eddb.py @@ -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