From 49b9c0fc283d67eb9aaa60eb57e19cb85879a565 Mon Sep 17 00:00:00 2001 From: Florian Frantzen Date: Sat, 25 May 2024 16:22:34 +0200 Subject: [PATCH] Add missing `PathView` export to `reportviews` --- toponetx/classes/reportviews.py | 2 ++ 1 file changed, 2 insertions(+) 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)