aboutsummaryrefslogtreecommitdiffstats
path: root/local/theme/__init__.py
blob: c877d71380247b8cb602cd166a69304f504051d8 (plain) (blame)
1
2
3
4
5
6
7
# Import all files in the current directory
import os
for module in os.listdir(os.path.dirname(__file__)):
    if module == '__init__.py' or module[-3:] != '.py':
        continue
    __import__(module[:-3], locals(), globals())
del module

© 2014-2024 Faster IT GmbH | imprint | privacy policy