Skip to content

Commit

Permalink
__init__.py's : re-exported imported names
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaasRostock committed Nov 11, 2024
1 parent 8f1e20c commit e408685
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
20 changes: 10 additions & 10 deletions src/ospx/__init__.py
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
14 changes: 7 additions & 7 deletions src/ospx/fmi/__init__.py
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

0 comments on commit e408685

Please sign in to comment.