Remove unneeded init.py

This commit is contained in:
Mykola Grymalyuk
2023-04-03 10:48:24 -06:00
parent 23f2291bfa
commit 38025d7f2a

View File

@@ -1,5 +0,0 @@
# Credit: CorpNewt
from os.path import dirname, basename, isfile
import glob
modules = glob.glob(dirname(__file__)+"/*.py")
__all__ = [ basename(f)[:-3] for f in modules if isfile(f) and not f.endswith('__init__.py')]