Skip to content

Commit c64b715

Browse files
committed
DBManager: added missing required (not implicit) self argument
1 parent b4d8a5a commit c64b715

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

python/plugins/db_manager/db_plugins/connector.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,13 @@ def hasTableColumnEditingSupport(self):
6060
return False
6161

6262

63-
def execution_error_types():
63+
def execution_error_types(self):
6464
raise Exception("DBConnector.execution_error_types() is an abstract method")
6565

66-
def connection_error_types():
66+
def connection_error_types(self):
6767
raise Exception("DBConnector.connection_error_types() is an abstract method")
6868

69-
def error_types():
69+
def error_types(self):
7070
return self.connection_error_types() + self.execution_error_types()
7171

7272
def _execute(self, cursor, sql):

0 commit comments

Comments
 (0)