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

@ -31,4 +31,4 @@ html_theme = 'nature'
html_static_path = ['_static'] html_static_path = ['_static']
html_favicon = '_static/kanji.png' html_favicon = '_static/kanji.png'
html_logo = '_static/kanji.png' html_logo = '_static/kanji.png'

View file

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

View file

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

View file

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