Skip to content
Snippets Groups Projects
Commit cd087a26 authored by Luke Barnard's avatar Luke Barnard
Browse files

Don't use redundant inlineCallbacks

parent 87c864b6
Branches
Tags
No related merge requests found
......@@ -48,9 +48,8 @@ class GroupServerStore(SQLBaseStore):
desc="set_group_join_policy",
)
@defer.inlineCallbacks
def get_group(self, group_id):
ret = yield self._simple_select_one(
return self._simple_select_one(
table="groups",
keyvalues={
"group_id": group_id,
......@@ -63,8 +62,6 @@ class GroupServerStore(SQLBaseStore):
desc="get_group",
)
defer.returnValue(ret)
def get_users_in_group(self, group_id, include_private=False):
# TODO: Pagination
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment