Improved path utility output

This commit is contained in:
Mark Qvist
2021-09-25 11:27:43 +02:00
parent dd5133751e
commit f25906d44e
4 changed files with 33 additions and 3 deletions
+5
View File
@@ -0,0 +1,5 @@
import os
import glob
modules = glob.glob(os.path.dirname(__file__)+"/*.py")
__all__ = [ os.path.basename(f)[:-3] for f in modules if not f.endswith('__init__.py')]