ci: replace black with ruff format

We use `ruff` anyway, so it is one less dependency.
This commit is contained in:
link2xt
2024-04-29 21:18:57 +00:00
committed by holger krekel
parent 5e0f5ec390
commit 299d994d4b
5 changed files with 5 additions and 4 deletions

View File

@@ -4,6 +4,7 @@
it will echo back any text send to it, it also will print to console all Delta Chat core events.
Pass --help to the CLI to see available options.
"""
from deltachat_rpc_client import events, run_bot_cli
hooks = events.HookCollection()

View File

@@ -3,6 +3,7 @@
it will echo back any message that has non-empty text and also supports the /help command.
"""
import logging
import sys
from threading import Thread

View File

@@ -2,6 +2,7 @@
"""
Example echo bot without using hooks
"""
import logging
import sys