make Ruff happy

This commit is contained in:
2025-10-25 23:08:27 -04:00
parent fe5c0e23b5
commit 626c865461
7 changed files with 21 additions and 21 deletions

View File

@@ -2,13 +2,6 @@ from flask import (
Blueprint,
)
custom = Blueprint("custom", __name__)
# This implements non-standard
# endpoints created by other
# homeserver implementations.
from .hammerhead import hammerhead
from .conduwuit import conduwuit
from .dendrite import dendrite
@@ -16,6 +9,13 @@ from .telodendria import telo
from .synapse import synapse
from .citadel import citadel
custom = Blueprint("custom", __name__)
# This implements non-standard
# endpoints created by other
# homeserver implementations.
custom.register_blueprint(hammerhead)
custom.register_blueprint(conduwuit)
custom.register_blueprint(dendrite)