-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
__init__.py's : re-exported imported names
- Loading branch information
1 parent
8f1e20c
commit e408685
Showing
2 changed files
with
17 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
from ospx.simulation import Simulation | ||
from ospx.connector import Connector | ||
from ospx.simulation import Simulation as Simulation | ||
from ospx.connector import Connector as Connector | ||
from ospx.connection import ( | ||
Endpoint, | ||
Connection, | ||
Endpoint as Endpoint, | ||
Connection as Connection, | ||
) | ||
from ospx.component import Component | ||
from ospx.system import System | ||
from ospx.ospSimulationCase import OspSimulationCase | ||
from ospx.graph import Graph | ||
from ospx.ospCaseBuilder import OspCaseBuilder | ||
from ospx.importer import OspSystemStructureImporter | ||
from ospx.component import Component as Component | ||
from ospx.system import System as System | ||
from ospx.ospSimulationCase import OspSimulationCase as OspSimulationCase | ||
from ospx.graph import Graph as Graph | ||
from ospx.ospCaseBuilder import OspCaseBuilder as OspCaseBuilder | ||
from ospx.importer import OspSystemStructureImporter as OspSystemStructureImporter |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
from ospx.fmi.experiment import Experiment | ||
from ospx.fmi.experiment import Experiment as Experiment | ||
from ospx.fmi.unit import ( | ||
Unit, | ||
BaseUnit, | ||
DisplayUnit, | ||
Unit as Unit, | ||
BaseUnit as BaseUnit, | ||
DisplayUnit as DisplayUnit, | ||
) | ||
from ospx.fmi.variable import ( | ||
ScalarVariable, | ||
get_fmi_data_type, | ||
ScalarVariable as ScalarVariable, | ||
get_fmi_data_type as get_fmi_data_type, | ||
) | ||
from ospx.fmi.fmu import FMU | ||
from ospx.fmi.fmu import FMU as FMU |