diff --git a/classquiz/helpers/__init__.py b/classquiz/helpers/__init__.py index 1eb3544..07b43fb 100644 --- a/classquiz/helpers/__init__.py +++ b/classquiz/helpers/__init__.py @@ -117,7 +117,6 @@ def check_hashcash(data: str, input_data: str) -> bool: :type input_data: str :return: A boolean value. """ - print(data, input_data, hc_check(data)) if not hc_check(data): return False @@ -132,5 +131,4 @@ def check_hashcash(data: str, input_data: str) -> bool: assert ext == "" return True except AssertionError as e: - print(e, "hilo") return False diff --git a/frontend/src/lib/editor.svelte b/frontend/src/lib/editor.svelte index cdee7ef..5356a71 100644 --- a/frontend/src/lib/editor.svelte +++ b/frontend/src/lib/editor.svelte @@ -1,37 +1,20 @@