Skip to content

Commit eeeb2f5

Browse files
committed
chore: lint fix
Signed-off-by: habeck <habeck@us.ibm.com>
1 parent c89aae7 commit eeeb2f5

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

cpex/framework/isolated/worker.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
import importlib.metadata
1414
import json
1515
import logging
16-
import os
1716
import platform
1817
import sys
1918
from pathlib import Path
@@ -70,6 +69,7 @@ def get_environment_info():
7069
"installed_packages": [str(d) for d in importlib.metadata.entry_points()][:10], # First 10 packages
7170
}
7271

72+
7373
async def process_task(task_data, tp: TaskProcessor):
7474
"""Process the task received from parent."""
7575
task_type = task_data.get("task_type")
@@ -114,7 +114,9 @@ async def process_task(task_data, tp: TaskProcessor):
114114
plugin_ref = PluginRef(plugin)
115115
hook_ref = HookRef(hook_type, plugin_ref)
116116
executor = PluginExecutor(None, 30)
117-
tp.initialize(hook_ref=hook_ref, executor=executor, json_config=json_config, module_path=resolved_module_path)
117+
tp.initialize(
118+
hook_ref=hook_ref, executor=executor, json_config=json_config, module_path=resolved_module_path
119+
)
118120
# retrieve the context
119121
context = task_data.get("context")
120122
plugin_context = PluginContext(

0 commit comments

Comments
 (0)