mirror of
https://github.com/senju1337/senju.git
synced 2025-12-24 07:39:29 +00:00
ci: automatic Python Formatter changes
This commit is contained in:
parent
20855b2117
commit
627b546227
4 changed files with 8 additions and 4 deletions
|
|
@ -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")
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue