Ready to go

This commit is contained in:
Print3M
2024-07-23 16:30:39 +02:00
parent 7a2b0359a9
commit 57803faad8
6 changed files with 94 additions and 154 deletions
+1 -1
View File
@@ -50,7 +50,7 @@ def get_msvc_console_environs() -> dict[str, str]:
print(f"[!] MSVC Developer Console error: {process.stderr}")
sys.exit(-1)
envs = {}
envs: dict[str, str] = {}
for line in process.stdout.splitlines():
if '=' in line:
key, value = line.split('=', 1)