Rename to tmp folders

Work around git not checking case
This commit is contained in:
Mykola Grymalyuk
2021-10-03 13:31:19 -06:00
parent c0350e036e
commit b9a5ba7897
22 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
# 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')]