|
@@ -1,10 +1,10 @@
|
|
|
import glob
|
|
|
-from os.path import dirname, basename
|
|
|
+import os.path as osp
|
|
|
|
|
|
|
|
|
__all__ = []
|
|
|
-modules = glob.glob(dirname(__file__) + "/*.py")
|
|
|
+modules = glob.glob(osp.dirname(__file__) + "/*.py")
|
|
|
for m in modules:
|
|
|
- c = str(basename(m)[:-3])
|
|
|
+ c = str(osp.basename(m)[:-3])
|
|
|
if not c.startswith('__') and not c.startswith('Base') and c.endswith('Attack'):
|
|
|
__all__.append(c)
|