From 50cc615d8073809d7a5b1fd55432ed596eaa80c3 Mon Sep 17 00:00:00 2001 From: Repinoid Date: Wed, 10 Jun 2026 21:39:44 +0400 Subject: [PATCH] fix: SyntaxError - triple quotes --- api/routes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/routes.py b/api/routes.py index e2aa4eb..f5bfc6a 100644 --- a/api/routes.py +++ b/api/routes.py @@ -318,7 +318,7 @@ def register(app): @app.route("/api/v1/elm/profile/", methods=["PUT"]) def update_elm_profile(mac: str): - """Обновляет поля профиля (response_time_ms и т.д.). Если профиля нет — создаёт.''' + """Обновляет поля профиля (response_time_ms и т.д.). Если профиля нет — создаёт.""" data = request.get_json(silent=True) or {} with Database() as db: p = db.get_device_profile(mac)