From b1e0e98e34f7fa6a60960a3e5cfe9a8261020243 Mon Sep 17 00:00:00 2001 From: EtaLoop <146718995+EtaLoop@users.noreply.github.com> Date: Tue, 10 Dec 2024 15:57:07 +0100 Subject: [PATCH] Fix return type hint --- src/gepetto_viewer_rerun/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gepetto_viewer_rerun/client.py b/src/gepetto_viewer_rerun/client.py index 70b87b8..86659c6 100644 --- a/src/gepetto_viewer_rerun/client.py +++ b/src/gepetto_viewer_rerun/client.py @@ -500,7 +500,7 @@ def _log_entity(self, entity: Entity): ) return True - def _get_group_list(self, group_name: str) -> List[Group] | None: + def _get_group_list(self, group_name: str) -> List[Group]: """Get groups inside `self.group_List`""" group_list = [] for group in self.group_list: