Skip to content

Commit

Permalink
Expose Edge in API
Browse files Browse the repository at this point in the history
  • Loading branch information
p-snft committed Sep 27, 2023
1 parent 3a095ee commit 4ae2d62
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/oemof/network/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@
from . import network
from .network import Bus
from .network import Component
from .network import Edge
from .network import Sink
from .network import Source
from .network import Transformer

__all__ = [
"Bus",
"Component",
"Edge",
"energy_system",
"graph",
"groupings",
Expand Down
2 changes: 2 additions & 0 deletions src/oemof/network/network/__init__.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
from .nodes import Bus
from .nodes import Component
from .edge import Edge
from .nodes import Sink
from .nodes import Source
from .nodes import Transformer

__all__ = [
"Bus",
"Component",
"Edge",
"Sink",
"Source",
"Transformer",
Expand Down

0 comments on commit 4ae2d62

Please sign in to comment.