diff --git a/toponetx/classes/reportviews.py b/toponetx/classes/reportviews.py index db15b3ff..02de1d2b 100644 --- a/toponetx/classes/reportviews.py +++ b/toponetx/classes/reportviews.py @@ -3,6 +3,7 @@ Such as: HyperEdgeView, CellView, SimplexView, NodeView. """ + from abc import ABC, abstractmethod from collections.abc import Collection, Hashable, Iterable, Iterator, Sequence from itertools import chain @@ -20,6 +21,7 @@ "CellView", "SimplexView", "NodeView", + "PathView", ] T_Atom = TypeVar("T_Atom", bound=Atom)