Use fstrings consistently

This commit is contained in:
kramo
2023-03-24 21:07:08 +01:00
parent a665241d76
commit 4401378ce3
3 changed files with 10 additions and 10 deletions

View File

@@ -103,7 +103,7 @@ def bottles_parser(parent_widget, action):
game = library[game] game = library[game]
values = {} values = {}
values["game_id"] = "bottles_" + game["id"] values["game_id"] = f'bottles_{game["id"]}'
if ( if (
values["game_id"] in parent_widget.games values["game_id"] in parent_widget.games
@@ -113,7 +113,7 @@ def bottles_parser(parent_widget, action):
values["name"] = game["name"] values["name"] = game["name"]
values["executable"] = "xdg-open " + shlex.quote( values["executable"] = "xdg-open " + shlex.quote(
"bottles:run/" + game["bottle"]["name"] + "/" + game["name"] f'bottles:run/{game["bottle"]["name"]}/{game["name"]}'
) )
values["hidden"] = False values["hidden"] = False
values["source"] = "bottles" values["source"] = "bottles"

View File

@@ -142,7 +142,7 @@ def heroic_parser(parent_widget, action):
heroic_dir, heroic_dir,
"images-cache", "images-cache",
hashlib.sha256( hashlib.sha256(
(game["art_square"] + "?h=400&resize=1&w=300").encode() (f'{game["art_square"]} ?h=400&resize=1&w=300').encode()
).hexdigest(), ).hexdigest(),
) )
if os.path.exists(image_path): if os.path.exists(image_path):

View File

@@ -51,10 +51,10 @@ def get_game(task, datatypes, current_time, parent_widget, appmanifest, steam_di
data = open_file.read() data = open_file.read()
open_file.close() open_file.close()
for datatype in datatypes: for datatype in datatypes:
value = re.findall('"' + datatype + '"\t\t"(.*)"\n', data) value = re.findall(f'"{datatype}"\t\t"(.*)"\n', data)
values[datatype] = value[0] values[datatype] = value[0]
values["game_id"] = "steam_" + values["appid"] values["game_id"] = f'steam_{values["appid"]}'
if ( if (
values["game_id"] in parent_widget.games values["game_id"] in parent_widget.games
@@ -64,16 +64,16 @@ def get_game(task, datatypes, current_time, parent_widget, appmanifest, steam_di
return return
values["executable"] = ( values["executable"] = (
"start steam://rungameid/" + values["appid"] f'start steam://rungameid/{values["appid"]}'
if os.name == "nt" if os.name == "nt"
else "xdg-open steam://rungameid/" + values["appid"] else f'xdg-open steam://rungameid/{values["appid"]}'
) )
values["hidden"] = False values["hidden"] = False
values["source"] = "steam" values["source"] = "steam"
values["added"] = current_time values["added"] = current_time
values["last_played"] = 0 values["last_played"] = 0
url = "https://store.steampowered.com/api/appdetails?appids=" + values["appid"] url = f'https://store.steampowered.com/api/appdetails?appids={values["appid"]}'
# On Linux the request is made through gvfs so the app can run without network permissions # On Linux the request is made through gvfs so the app can run without network permissions
if os.name == "nt": if os.name == "nt":
@@ -97,7 +97,7 @@ def get_game(task, datatypes, current_time, parent_widget, appmanifest, steam_di
steam_dir, steam_dir,
"appcache", "appcache",
"librarycache", "librarycache",
values["appid"] + "_library_600x900.jpg", f'{values["appid"]}_library_600x900.jpg',
) )
): ):
save_cover( save_cover(
@@ -107,7 +107,7 @@ def get_game(task, datatypes, current_time, parent_widget, appmanifest, steam_di
steam_dir, steam_dir,
"appcache", "appcache",
"librarycache", "librarycache",
values["appid"] + "_library_600x900.jpg", f'{values["appid"]}_library_600x900.jpg',
), ),
) )