From 4bca515e8ee5683b2b0c32d95cea620658ff9d6c Mon Sep 17 00:00:00 2001 From: elegantmoose Date: Wed, 18 Dec 2024 19:38:39 -0500 Subject: [PATCH] flake 8 --- app/api/v2/managers/operation_api_manager.py | 2 +- app/service/planning_svc.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/api/v2/managers/operation_api_manager.py b/app/api/v2/managers/operation_api_manager.py index 57d8fdae6..5ed6adf9b 100644 --- a/app/api/v2/managers/operation_api_manager.py +++ b/app/api/v2/managers/operation_api_manager.py @@ -171,7 +171,7 @@ async def _construct_and_dump_source(self, source_id: str): if not source: source = (await self.services['data_svc'].locate('sources', match=dict(name='basic'))) return SourceSchema().dump(source[0]) - + async def _call_ability_plugin_hooks(self, ability, executor): """Calls any plugin hooks (at runtime) that exist for the ability and executor.""" for _hook, fcall in executor.HOOKS.items(): diff --git a/app/service/planning_svc.py b/app/service/planning_svc.py index 98a442e53..af3bf17c7 100644 --- a/app/service/planning_svc.py +++ b/app/service/planning_svc.py @@ -389,7 +389,7 @@ async def _generate_cleanup_links(self, operation, agent, link_status): lnk.apply_id(agent.host) links.append(lnk) return links - + async def _call_ability_plugin_hooks(self, ability, executor): """Calls any plugin hooks (at runtime) that exist for the ability and executor.""" for _hook, fcall in executor.HOOKS.items():