refactor(panel.py): remove unnecesarry args to render_template

This commit is contained in:
2025-08-26 19:36:43 +02:00
parent 1fa355089d
commit 9e71270e41

View File

@@ -18,6 +18,4 @@ def panel() -> str:
Returns:
Rendered HTML template with PC details.
"""
return flask.render_template(
"panel.html", username=flask_login.current_user.id, pcs={}
)
return flask.render_template("panel.html")