Skip to content

Commit 506272c

Browse files
committed
Fix for #1
1 parent 89faedd commit 506272c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tb_rest_client/rest_client_pe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def delete_entity_group(self, entity_group_id: EntityGroupId):
179179

180180
def get_entity_groups_by_type(self, group_type):
181181
group_type = self.get_type(group_type)
182-
self.entity_group_controller.get_entity_groups_by_type_using_get(group_type=group_type)
182+
return self.entity_group_controller.get_entity_groups_by_type_using_get(group_type=group_type)
183183

184184
def get_entity_groups_by_owner_and_type(self, owner_id, group_type):
185185
group_type = self.get_type(group_type)

0 commit comments

Comments
 (0)