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

@ -41,7 +41,7 @@ def foobar():
"""WE KNOW"""
a = 3
b = 3
return a+b
return a + b
@dataclass

View file

@ -14,11 +14,13 @@ app = Flask(__name__)
store = StoreManager(Path("/tmp/store.db"))
def foobar():
"""WE KNOW"""
a = 3
b = 3
return a+b
return a + b
@app.route("/")
def index_view():

View file

@ -11,11 +11,13 @@ 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
return a + b
class StoreManager:
__slots__ = "_db", "logger"