remove return type promise

main
missytake 2023-05-22 15:39:20 +02:00
parent 2ad1a3b0cd
commit ebbb07bf1a
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ from deltachat.capi import lib as dclib
from deltachat.cutil import as_dc_charpointer
def get_control_group(ac: deltachat.account.Account) -> deltachat.chat.Chat | None:
def get_control_group(ac: deltachat.account.Account):
for chat in ac.get_chats():
if chat.num_contacts() == 1 and chat.is_protected() and chat.is_group():
if chat.get_name() == "verification bot control group":