mirror of
https://github.com/Pennyw0rth/NetExec
synced 2026-06-06 16:34:30 +00:00
Replace single quotes
This commit is contained in:
+2
-2
@@ -2,8 +2,8 @@ import os
|
||||
import sys
|
||||
import nxc
|
||||
|
||||
if 'XDG_CONFIG_HOME' in os.environ:
|
||||
NXC_PATH = os.path.join(os.getenv('XDG_CONFIG_HOME'), "nxc")
|
||||
if "XDG_CONFIG_HOME" in os.environ: # noqa: SIM108
|
||||
NXC_PATH = os.path.join(os.getenv("XDG_CONFIG_HOME"), "nxc")
|
||||
else:
|
||||
NXC_PATH = os.path.expanduser("~/.nxc")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user