From 38051fdb64d163e4de650e931cd88bfa063373d3 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 11 Mar 2024 17:45:05 +0000 Subject: [PATCH 1/2] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- src/tqdm_publisher/_demo/_client.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tqdm_publisher/_demo/_client.html b/src/tqdm_publisher/_demo/_client.html index bdd4d8e..0e514eb 100644 --- a/src/tqdm_publisher/_demo/_client.html +++ b/src/tqdm_publisher/_demo/_client.html @@ -70,6 +70,6 @@

tqdm_progress

-
+
From 9426dc57b4dca632ed9cd5171cd3f8dd1801aa6c Mon Sep 17 00:00:00 2001 From: Cody Baker <51133164+CodyCBakerPhD@users.noreply.github.com> Date: Mon, 11 Mar 2024 13:56:21 -0400 Subject: [PATCH 2/2] Update src/tqdm_publisher/_demo/_client.js --- src/tqdm_publisher/_demo/_client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tqdm_publisher/_demo/_client.js b/src/tqdm_publisher/_demo/_client.js index b078373..edf3670 100644 --- a/src/tqdm_publisher/_demo/_client.js +++ b/src/tqdm_publisher/_demo/_client.js @@ -26,7 +26,7 @@ class ProgressClient { this.socket = new WebSocket('ws://localhost:8000'); this.socket.addEventListener('open', onopen); - // Attemp to reconnect every second if the connection is closed + // Attempt to reconnect every second if the connection is closed this.socket.addEventListener('close', () => { onclose(); setTimeout(() => this.#connect(props), 1000);