client utils import fix hopefully

This commit is contained in:
JJJHolscher 2024-11-09 13:02:46 +01:00
parent ff01effeb8
commit 333ef3a31f

View File

@ -47,8 +47,8 @@ def message_from_editor():
###
def send_post(client, message):
from atproto.client_utils import TextBuilder
text = TextBuilder().text(message)
from atproto import client_utils
text = client_utils.TextBuilder().text(message)
return client.post(text)
def get_posted_text(client, uri):