diff --git a/analyzer/windows/lib/common/abstracts.py b/analyzer/windows/lib/common/abstracts.py index 3edf4316a61..cb2baa6d0e9 100644 --- a/analyzer/windows/lib/common/abstracts.py +++ b/analyzer/windows/lib/common/abstracts.py @@ -79,7 +79,7 @@ def configure_from_data(self, target: str): - AttributeError if the module configure function is invalid. - ModuleNotFoundError if the module does not support configuration from data """ - package_module_name = self.__class__.__module__.split('.')[-1] + package_module_name = self.__class__.__module__.split(".")[-1] module_name = f"data.packages.{package_module_name}" try: m = importlib.import_module(module_name)