Use snake nameing scheme

This commit is contained in:
Mykola Grymalyuk
2021-10-03 13:35:01 -06:00
parent b9a5ba7897
commit e33997320b
26 changed files with 26 additions and 26 deletions
+5
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')]