1
0
Fork 0
mirror of https://github.com/ansible-collections/community.mysql.git synced 2026-02-04 07:11:49 +00:00

fix linting

This commit is contained in:
Sebastian Pfahl 2025-07-15 12:53:21 +02:00
parent 81045d074b
commit 4b14ac1b50

View file

@ -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