Skip to content

Commit

Permalink
Fix return type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
EtaLoop committed Dec 10, 2024
1 parent 4aa5188 commit b1e0e98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gepetto_viewer_rerun/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit b1e0e98

Please sign in to comment.