We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8463748 commit 9214caaCopy full SHA for 9214caa
lighthouse/utils/runner.py
@@ -24,11 +24,10 @@ def get_engine(
24
if not os.path.isfile(so_path):
25
raise ValueError(f"Could not find shared library {so_path}")
26
libs.append(so_path)
27
- with context, location:
28
- execution_engine = ExecutionEngine(
29
- payload_module, opt_level=opt_level, shared_libs=libs
30
- )
31
- execution_engine.initialize()
+ execution_engine = ExecutionEngine(
+ payload_module, opt_level=opt_level, shared_libs=libs
+ )
+ execution_engine.initialize()
32
return execution_engine
33
34
0 commit comments