From 484b101734dcc1e1523e66190aeac003ae62e4ed Mon Sep 17 00:00:00 2001 From: Sina Atalay <79940989+sinaatalay@users.noreply.github.com> Date: Wed, 10 Dec 2025 18:40:38 +0300 Subject: [PATCH] Fix spelling --- src/rendercv/cli/render_command/watcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rendercv/cli/render_command/watcher.py b/src/rendercv/cli/render_command/watcher.py index b34235a8..21911f3b 100644 --- a/src/rendercv/cli/render_command/watcher.py +++ b/src/rendercv/cli/render_command/watcher.py @@ -36,7 +36,7 @@ def run_function_if_file_changes(file_path: pathlib.Path, function: Callable): self.function() except Exception as e: # This means an unhandled error occurred in the function. - # Don't surpress it + # Don't suppress it raise e event_handler = EventHandler(function)