51:29c461f7bea0 | 52:c264091162a2 |
---|---|
26 """ | 26 """ |
27 Constructor | 27 Constructor |
28 | 28 |
29 @param parent reference to the parent widget (QWidget) | 29 @param parent reference to the parent widget (QWidget) |
30 """ | 30 """ |
31 super(FindTemplateTagDialog, self).__init__(parent) | 31 super().__init__(parent) |
32 self.setupUi(self) | 32 self.setupUi(self) |
33 | 33 |
34 self.__completer = QCompleter(( | 34 self.__completer = QCompleter(( |
35 # template tags | 35 # template tags |
36 'autoescape', 'block', 'comment', 'csrf_token', 'cycle', 'debug', | 36 'autoescape', 'block', 'comment', 'csrf_token', 'cycle', 'debug', |