We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 25567d6 + 99fc1c0 commit 5ce06d1Copy full SHA for 5ce06d1
Macropad_Hotkeys/code.py
@@ -81,7 +81,7 @@ def switch(self):
81
files = os.listdir(MACRO_FOLDER)
82
files.sort()
83
for filename in files:
84
- if filename.endswith('.py'):
+ if filename.endswith('.py') and not filename.startswith('._'):
85
try:
86
module = __import__(MACRO_FOLDER + '/' + filename[:-3])
87
apps.append(App(module.app))
0 commit comments