Replace single quotes

This commit is contained in:
Alex
2025-06-10 12:46:37 +02:00
parent 4af8b4a826
commit 0b4d0bb21c
+2 -2
View File
@@ -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")