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.
1 parent b29b64e commit 99fc1c0Copy full SHA for 99fc1c0
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