From e61c5c486c4dbc23db87a9a158d0b793ca812abe Mon Sep 17 00:00:00 2001 From: Hulto <7121375+hulto@users.noreply.github.com> Date: Thu, 25 Apr 2024 12:21:57 -0400 Subject: [PATCH 1/2] Hot patch --- tavern/tomes/cat/main.eldritch | 1 + 1 file changed, 1 insertion(+) diff --git a/tavern/tomes/cat/main.eldritch b/tavern/tomes/cat/main.eldritch index d7f6be57d..e0d696d76 100644 --- a/tavern/tomes/cat/main.eldritch +++ b/tavern/tomes/cat/main.eldritch @@ -7,4 +7,5 @@ def cat(path): return +sleep(5) cat(input_params['path']) From aa55875fb646a43b1e35340e95980469c4b599c6 Mon Sep 17 00:00:00 2001 From: Hulto <7121375+hulto@users.noreply.github.com> Date: Thu, 25 Apr 2024 15:40:07 -0400 Subject: [PATCH 2/2] fix --- tavern/tomes/cat/main.eldritch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tavern/tomes/cat/main.eldritch b/tavern/tomes/cat/main.eldritch index e0d696d76..253724859 100644 --- a/tavern/tomes/cat/main.eldritch +++ b/tavern/tomes/cat/main.eldritch @@ -7,5 +7,5 @@ def cat(path): return -sleep(5) +time.sleep(5) cat(input_params['path'])