ci: automatic Python Formatter changes

This commit is contained in:
github-actions[bot] 2025-03-15 19:09:15 +00:00
parent 20855b2117
commit 627b546227
4 changed files with 8 additions and 4 deletions

View file

@ -14,12 +14,14 @@ app = Flask(__name__)
store = StoreManager(Path("/tmp/store.db"))
def foobar():
"""WE KNOW"""
a = 3
b = 3
return a + b
@app.route("/")
def index_view():
return render_template("index.html", title="Senju")

View file

@ -11,12 +11,14 @@ from senju.haiku import Haiku
DEFAULT_DB_PATH: Path = Path("/var/lib/senju.json")
def foobar():
"""WE KNOW"""
a = 3
b = 3
return a + b
class StoreManager:
__slots__ = "_db", "logger"
_db: TinyDB