Skip to content

Commit

Permalink
Merge pull request #356 from pyt-team/frantzen/missing-ColoredHyperEd…
Browse files Browse the repository at this point in the history
…geView-export

Add missing `ColoredHyperEdgeView` export to `classes` module
  • Loading branch information
ffl096 committed May 24, 2024
2 parents 2b47d10 + 7719c31 commit fc47106
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion toponetx/classes/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Initialize the classes module of toponetx."""

from .cell import Cell
from .cell_complex import CellComplex
from .colored_hypergraph import ColoredHyperGraph
Expand All @@ -7,7 +8,14 @@
from .hyperedge import HyperEdge
from .path import Path
from .path_complex import PathComplex
from .reportviews import CellView, HyperEdgeView, NodeView, PathView, SimplexView
from .reportviews import (
CellView,
ColoredHyperEdgeView,
HyperEdgeView,
NodeView,
PathView,
SimplexView,
)
from .simplex import Simplex
from .simplicial_complex import SimplicialComplex

Expand All @@ -20,6 +28,7 @@
"Complex",
"HyperEdge",
"HyperEdgeView",
"ColoredHyperEdgeView",
"CellView",
"SimplexView",
"NodeView",
Expand Down

0 comments on commit fc47106

Please sign in to comment.