This commit is contained in:
deathbybandaid 2021-01-21 15:21:53 -05:00
parent 920095f18e
commit a941cdcea3

View File

@ -1,2 +1,7 @@
# pylama:ignore=W0401,W0611
# from .test import *
import os
alt_epg_top_dir = os.path.dirname(__file__)
for entry in os.scandir(alt_epg_top_dir):
if entry.is_dir() and not entry.is_file() and entry.name[0] != '_':
imp_string = "from .%s import *" % entry.name
exec(imp_string)