Skip to content

Commit

Permalink
[breadboard-web] Stop raising exception if Python boards fail to load (
Browse files Browse the repository at this point in the history
…breadboard-ai#621)

Unblocks developers that don't have a Python environment set up that can
run breadboard-python.

Co-authored-by: Kevin Xiao <kevxiao@google.com>
  • Loading branch information
kex103 and Kevin Xiao authored Feb 2, 2024
1 parent bad5aa4 commit d7c77e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/breadboard-web/src/make-graphs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ async function savePythonBoard(

return manifestEntry;
} catch (e) {
throw new Error(`Error loading ${filePath}: ${e}`);
console.error(`Error loading ${filePath}: ${e}`);
}
}

Expand Down

0 comments on commit d7c77e4

Please sign in to comment.