Skip to content
This repository was archived by the owner on Mar 11, 2022. It is now read-only.

Commit 8dad481

Browse files
authored
Add files via upload
1 parent c9e7dbb commit 8dad481

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Help_functions/__init__.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
from sys import path
2+
from os.path import dirname, basename, isfile, join
3+
import glob
4+
5+
path.append(dirname(path[0]))
6+
7+
8+
modules = glob.glob(join(dirname(__file__), "*.py"))
9+
__all__ = [ basename(f)[:-3] for f in modules if isfile(f) and not f.endswith('__init__.py')]

0 commit comments

Comments
 (0)