mirror of
https://gitlab.com/manzerbredes/esds.git
synced 2025-04-05 17:46:29 +02:00
Debug imports
This commit is contained in:
parent
47c71c85c9
commit
a2c5db3882
3 changed files with 3 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
|||
__all__ = ["simulator", "node", "plugins", "helpers", "rcode", "debug"]
|
||||
__all__ = ["simulator", "node", "plugins", "helpers", "rcode", "debug", "platform"]
|
||||
__version__ = "0.0.1"
|
||||
|
||||
from esds.simulator import Simulator
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
import sys, argparse, os
|
||||
from esds.helpers.platform import YAMLPlatformFile
|
||||
from esds import __version__
|
||||
import platform
|
||||
|
||||
# Allow importlib to import file from current working directory
|
||||
sys.path.insert(0, os.getcwd())
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
|
||||
import yaml, os, importlib
|
||||
import numpy as np
|
||||
from esds import Simulator
|
||||
import Simulator
|
||||
|
||||
class UnitsParser:
|
||||
def node_range(r,limit):
|
Loading…
Add table
Reference in a new issue