Tool black: auto-format Python code

This commit is contained in:
Odd Stråbø 2024-06-10 09:19:47 +00:00
commit 7763762212
54 changed files with 6545 additions and 4723 deletions

View file

@ -15,13 +15,11 @@ LOG = LazyLogger(__name__)
def translate(string):
''' Get add-on string. Returns in unicode.
'''
"""Get add-on string. Returns in unicode."""
if type(string) != int:
string = STRINGS[string]
result = xbmcaddon.Addon('plugin.video.jellyfin').getLocalizedString(string)
result = xbmcaddon.Addon("plugin.video.jellyfin").getLocalizedString(string)
if not result:
result = xbmc.getLocalizedString(string)
@ -30,23 +28,23 @@ def translate(string):
STRINGS = {
'addon_name': 29999,
'playback_mode': 30511,
'empty_user': 30613,
'empty_user_pass': 30608,
'empty_server': 30617,
'network_credentials': 30517,
'invalid_auth': 33009,
'addon_mode': 33036,
'native_mode': 33037,
'cancel': 30606,
'username': 30024,
'password': 30602,
'gathering': 33021,
'boxsets': 30185,
'movies': 30302,
'tvshows': 30305,
'fav_movies': 30180,
'fav_tvshows': 30181,
'fav_episodes': 30182
"addon_name": 29999,
"playback_mode": 30511,
"empty_user": 30613,
"empty_user_pass": 30608,
"empty_server": 30617,
"network_credentials": 30517,
"invalid_auth": 33009,
"addon_mode": 33036,
"native_mode": 33037,
"cancel": 30606,
"username": 30024,
"password": 30602,
"gathering": 33021,
"boxsets": 30185,
"movies": 30302,
"tvshows": 30305,
"fav_movies": 30180,
"fav_tvshows": 30181,
"fav_episodes": 30182,
}