filter for DM

This commit is contained in:
callebtc
2023-02-13 23:02:36 +01:00
parent 383f49e0b2
commit 2872fe3c24
2 changed files with 3 additions and 6 deletions

View File

@@ -33,13 +33,9 @@ async def dm():
print(f"Your public key: {client.public_key.bech32()}")
# await asyncio.sleep(1)
t = threading.Thread(
target=client.get_dm,
args=(
client.public_key,
callback,
),
args=(client.public_key, callback),
)
t.start()