diff -r 1c226fab4236 -r 4a932a7ab987 Preferences/ConfigurationPages/HelpVirusTotalPage.py --- a/Preferences/ConfigurationPages/HelpVirusTotalPage.py Sat Jun 30 12:22:31 2018 +0200 +++ b/Preferences/ConfigurationPages/HelpVirusTotalPage.py Sat Jun 30 13:56:44 2018 +0200 @@ -21,11 +21,9 @@ """ Class implementing VirusTotal configuration page (help viewer variant). """ - def __init__(self, parent=None): + def __init__(self): """ Constructor - - @param parent reference to the parent widget (QWidget) """ super(HelpVirusTotalPage, self).__init__() self.setupUi(self) @@ -113,5 +111,5 @@ @param dlg reference to the configuration dialog @return reference to the instantiated page (ConfigurationPageBase) """ - page = HelpVirusTotalPage(dlg) + page = HelpVirusTotalPage() return page