[revert] remove error except for send follow
All checks were successful
/ run-pytest (push) Successful in 38s

This commit is contained in:
SouthFox 2024-03-10 00:53:33 +08:00
parent f6b6e8c278
commit ef5391787a

View file

@ -76,11 +76,7 @@ def follow(ctx):
async def _dodo(): async def _dodo():
async with async_session() as db_session: #type: ignore async with async_session() as db_session: #type: ignore
try:
await send_follow(db_session,acct) await send_follow(db_session,acct)
except Exception as e:
print(f"ERROR: Failed to {e}")
return
print("Done!") print("Done!")