From 4b14ac1b5055346f0948c772931a10875e1a5582 Mon Sep 17 00:00:00 2001 From: Sebastian Pfahl Date: Tue, 15 Jul 2025 12:53:21 +0200 Subject: [PATCH] fix linting --- tests/unit/plugins/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/plugins/utils.py b/tests/unit/plugins/utils.py index 5315a99..fea9ad4 100644 --- a/tests/unit/plugins/utils.py +++ b/tests/unit/plugins/utils.py @@ -22,7 +22,7 @@ class dummy_cursor_class(): class MockCursor: Warning = None - def __init__(self, status="ONLINE", warning = None): + def __init__(self, status="ONLINE", warning=None): self.status = status self.executed_queries = [] self.Warning = warning