From cccd8ad7300296b8487ed67f979bd1cf49d18888 Mon Sep 17 00:00:00 2001 From: Dylan De Faoite Date: Fri, 16 Jan 2026 21:33:20 +0000 Subject: [PATCH] update gitignore & reorganise imports in daemon --- .gitignore | 3 ++- rewind/daemon.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 511accd..2f1f061 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,5 @@ config.toml *.mp4 __pycache__/ rewind.egg-info/ -markers.json \ No newline at end of file +markers.json +*.code-workspace \ No newline at end of file diff --git a/rewind/daemon.py b/rewind/daemon.py index d29e200..fd4137d 100755 --- a/rewind/daemon.py +++ b/rewind/daemon.py @@ -8,9 +8,9 @@ import subprocess from watchdog.observers import Observer from watchdog.events import FileSystemEventHandler +from rewind.core import mark from rewind.paths import load_config from rewind.state import add_file_to_state, create_state_file_if_needed, cleanup_state_files -from rewind.core import mark INTERVAL = 10 running = True