fix(twitch): Fix broken imports

This commit is contained in:
2026-05-31 06:42:18 +10:00
parent d1368af74b
commit 1c1c109860
2 changed files with 9 additions and 5 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
import twitchio
from meta import Bot
from utils.lib import utc_now, strfdur
from utils.lib import utc_now, strfdelta
from ..customcmd.parser import ExecContext
from ..customcmd.client import ExecClient
@@ -34,7 +34,7 @@ class CustomCmdUser:
followed_at = follower.followed_at
if followed_at:
durstr = strfdur(utc_now() - followed_at)
durstr = strfdelta(utc_now() - followed_at)
resp = (
f"{self.user.mention} has been following {channel.mention} for {durstr}"
)