From f80fdebc65cd6133a90388e3a061135c0a138f35 Mon Sep 17 00:00:00 2001 From: Diego Imbert Date: Mon, 1 Dec 2025 17:10:45 +0100 Subject: [PATCH] nit snake case --- python-client/wmill/wmill/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-client/wmill/wmill/client.py b/python-client/wmill/wmill/client.py index b9529b48f2..cf6d1f9d51 100644 --- a/python-client/wmill/wmill/client.py +++ b/python-client/wmill/wmill/client.py @@ -1728,7 +1728,7 @@ class SqlQuery: if result_collection is not None: sql = f'-- result_collection={result_collection}\n{sql}' return self.fetch_fn(sql) - def fetchOne(self): + def fetch_one(self): return self.fetch(result_collection="last_statement_first_row") def infer_sql_type(value) -> str: