From b2f06f0f815907be3bfbcb67c54234553e9c1d0d Mon Sep 17 00:00:00 2001 From: TheTechromancer Date: Thu, 14 Sep 2023 16:50:37 -0400 Subject: [PATCH] blacked --- bbot/scanner/scanner.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bbot/scanner/scanner.py b/bbot/scanner/scanner.py index fd7847d05e..2e7a21772d 100644 --- a/bbot/scanner/scanner.py +++ b/bbot/scanner/scanner.py @@ -474,14 +474,14 @@ async def load_modules(self): 3. Load internal modules and updates the `modules` dictionary. 4. Load output modules and updates the `modules` dictionary. 5. Sorts modules based on their `_priority` attribute. - + If any modules fail to load or their dependencies fail to install, a ScanError will be raised (unless `self.force_start` is set to True). Attributes: succeeded, failed (tuple): A tuple containing lists of modules that succeeded or failed during the dependency installation. loaded_modules, loaded_internal_modules, loaded_output_modules (dict): Dictionaries of successfully loaded modules. failed, failed_internal, failed_output (list): Lists of module names that failed to load. - + Raises: ScanError: If any module dependencies fail to install or modules fail to load, and if self.force_start is False.