Clean resources

This commit is contained in:
Mykola Grymalyuk
2020-11-27 08:16:26 -07:00
parent f02b11659a
commit ca17eef4c1
5 changed files with 35 additions and 29 deletions
+5
View File
@@ -0,0 +1,5 @@
# Source: 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')]