Skip to content

Commit

Permalink
πŸ”§ chore(dependencies): update dependencies in pyproject.toml
Browse files Browse the repository at this point in the history
πŸ”¨ refactor(event): remove unused AnimeIDF and related code

πŸš€ feat(controller): add new message handlers for various commands

♻️ refactor(controller): simplify tagger function and markdown replies
  • Loading branch information
sudoskys committed Dec 25, 2024
1 parent 81e2896 commit 34764ce
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,10 @@ async def read_comfyui(file: BytesIO):
decoded_object = json_repair.loads(parameter)
return [
formatting.mbold("πŸ“¦ Comfyui", escape=False),
code(content=json.dumps(decoded_object, indent=2), language="json"),
code(
content=json.dumps(decoded_object, indent=2, ensure_ascii=False),
language="json",
),
]
except Exception as e:
logger.debug(f"Error {e}")
Expand Down

0 comments on commit 34764ce

Please sign in to comment.