Remove unused method. (#16435)

pull/16446/head
Patrick Cloke 2023-10-05 17:42:44 -04:00 committed by GitHub
parent fa907025f4
commit 3555790b27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 20 deletions

1
changelog.d/16435.misc Normal file
View File

@ -0,0 +1 @@
Remove unused method.

View File

@ -142,26 +142,6 @@ class DataStore(
super().__init__(database, db_conn, hs)
async def get_users(self) -> List[JsonDict]:
"""Function to retrieve a list of users in users table.
Returns:
A list of dictionaries representing users.
"""
return await self.db_pool.simple_select_list(
table="users",
keyvalues={},
retcols=[
"name",
"password_hash",
"is_guest",
"admin",
"user_type",
"deactivated",
],
desc="get_users",
)
async def get_users_paginate(
self,
start: int,