Skip to content

Commit 0b4d0bb

Browse files
committed
Replace single quotes
1 parent 4af8b4a commit 0b4d0bb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

nxc/paths.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import sys
33
import nxc
44

5-
if 'XDG_CONFIG_HOME' in os.environ:
6-
NXC_PATH = os.path.join(os.getenv('XDG_CONFIG_HOME'), "nxc")
5+
if "XDG_CONFIG_HOME" in os.environ: # noqa: SIM108
6+
NXC_PATH = os.path.join(os.getenv("XDG_CONFIG_HOME"), "nxc")
77
else:
88
NXC_PATH = os.path.expanduser("~/.nxc")
99

0 commit comments

Comments
 (0)