Skip to content

Commit

Permalink
Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
martinRenou committed Jan 14, 2025
1 parent 3b03aa2 commit 3796e03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyterlite_xeus/add_on.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def copy_kernel(self, kernel_dir, kernel_wasm, kernel_js, kernel_data):
],
)

if kernel_spec["metadata"] and kernel_spec["metadata"]["shared"]:
if kernel_spec.get("metadata", {}).get("shared", None) is not None:
for filename, location in kernel_spec["metadata"]["shared"].items():
# Copy shared lib file in the output
yield dict(
Expand Down

0 comments on commit 3796e03

Please sign in to comment.