Skip to content

Commit 3f1e308

Browse files
authored
Fix package.json version entry (#376)
* Fix package.json version entry * There is no try, do it
1 parent d905694 commit 3f1e308

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipycanvas",
3-
"version": "0.14.0",
3+
"version": "0.14.1",
44
"description": "Interactive widgets library exposing the browser's Canvas API",
55
"keywords": [
66
"jupyter",

src/utils.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ export async function toBytes(
139139
export async function fromBytes(
140140
array: Uint8ClampedArray
141141
): Promise<HTMLImageElement> {
142+
// @ts-ignore oh come on
142143
const blob = new Blob([array]);
143144

144145
return new Promise<HTMLImageElement>((resolve, reject) => {

0 commit comments

Comments
 (0)