From 333ef3a31f168a611b7cdd7378b87b9f749d3019 Mon Sep 17 00:00:00 2001 From: JJJHolscher Date: Sat, 9 Nov 2024 13:02:46 +0100 Subject: [PATCH] client utils import fix hopefully --- skeet/__main__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skeet/__main__.py b/skeet/__main__.py index f8155b0..80e8a34 100644 --- a/skeet/__main__.py +++ b/skeet/__main__.py @@ -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):