32 |
32 |
33 @param connections list of database connections to add |
33 @param connections list of database connections to add |
34 (list of strings) |
34 (list of strings) |
35 @param parent reference to the parent widget (QWidget) |
35 @param parent reference to the parent widget (QWidget) |
36 """ |
36 """ |
37 super(SqlBrowser, self).__init__(parent) |
37 super().__init__(parent) |
38 self.setObjectName("SqlBrowser") |
38 self.setObjectName("SqlBrowser") |
39 |
39 |
40 if connections is None: |
40 if connections is None: |
41 connections = [] |
41 connections = [] |
42 |
42 |