mirror of
https://github.com/wassname/simpeg.git
synced 2026-07-17 11:32:59 +08:00
Updates to examples and documentation.
This commit is contained in:
@@ -1 +1,9 @@
|
||||
import Linear, DCfwd
|
||||
# This will import everything in the directory into this file
|
||||
from os import path as p
|
||||
from glob import glob
|
||||
__all__ = []
|
||||
for x in glob(p.join(p.dirname(__file__), '*.py')):
|
||||
if not p.basename(x).startswith('__'):
|
||||
__import__(p.basename(x)[:-3], globals(), locals())
|
||||
__all__ += [p.basename(x)]
|
||||
del glob, p, x
|
||||
|
||||
Reference in New Issue
Block a user