Skip to content

Commit 2e79d28

Browse files
Binyang2014Copilot
andauthored
Update python/mscclpp/__init__.py
Co-authored-by: Copilot <[email protected]>
1 parent f4a77c5 commit 2e79d28

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

python/mscclpp/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -291,9 +291,9 @@ def compile(
291291
}
292292
)
293293
).hexdigest()
294-
plan_handel = _execution_plan_registry.get(plan_id)
295-
if plan_handel is not None:
296-
return plan_handel
294+
plan_handle = _execution_plan_registry.get(plan_id)
295+
if plan_handle is not None:
296+
return plan_handle
297297

298298
plan_dir = os.environ.get("MSCCLPP_EXECUTION_PLAN_DIR", Path.home() / ".cache/mscclpp")
299299
os.makedirs(plan_dir, exist_ok=True)

0 commit comments

Comments
 (0)