From db6c81eacbe05f9a70766d5010ed035fe73683a9 Mon Sep 17 00:00:00 2001 From: R1kaB3rN <100738684+R1kaB3rN@users.noreply.github.com> Date: Sat, 10 Feb 2024 18:10:18 -0800 Subject: [PATCH] gamelauncher.py: update comments --- gamelauncher.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/gamelauncher.py b/gamelauncher.py index 78e7984..164e119 100755 --- a/gamelauncher.py +++ b/gamelauncher.py @@ -9,8 +9,6 @@ import tomllib from typing import Dict, Any, List, Set, Union import gamelauncher_plugins from re import match - -# TODO: Only set the environment variables that are not empty import subprocess @@ -284,10 +282,10 @@ def main() -> None: # noqa: D103 setup_pfx(env["WINEPREFIX"]) set_env(env, args) - # Game Drive functionality + # Game Drive gamelauncher_plugins.enable_steam_game_drive(env) - # Set all environment variable + # Set all environment variables # NOTE: `env` after this block should be read only for key, val in env.items(): print(f"Setting environment variable: {key}={val}")