--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Security/SecurityContext.py Sun May 18 17:23:00 2025 +0200 +++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Security/SecurityContext.py Mon May 19 14:33:49 2025 +0200 @@ -408,3 +408,13 @@ @rtype str """ return self.__context.get("filedata") + + @property + def importAliases(self): + """ + Public method to get the list of import aliases. + + @return list of import aliases + @rtype list of str + """ + return self.__context.get("import_aliases")