From 1fb0f3aca4363c53eb1184880710f68baca40fba Mon Sep 17 00:00:00 2001 From: Ryunosuke O'Neil Date: Mon, 16 Dec 2024 14:19:25 +0100 Subject: [PATCH] overwrite the correct method ... Overwrite correctly --- extensions/gubbins/gubbins-db/src/gubbins/db/sql/jobs/db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/gubbins/gubbins-db/src/gubbins/db/sql/jobs/db.py b/extensions/gubbins/gubbins-db/src/gubbins/db/sql/jobs/db.py index e89d1b85..8f56ce4e 100644 --- a/extensions/gubbins/gubbins-db/src/gubbins/db/sql/jobs/db.py +++ b/extensions/gubbins/gubbins-db/src/gubbins/db/sql/jobs/db.py @@ -40,7 +40,7 @@ async def getJobJDL( # type: ignore[override] info = (await self.conn.execute(stmt)).scalar_one() return {"JDL": jdl, "Info": info} - async def setJobAttributes(self, job_id, jobData): + async def setJobAttributesBulk(self, jobData): """ This method modified the one in the parent class, without changing the argument nor the return type