From 7a2b4e806fd0075c93825b716b0c41f79b0613ae Mon Sep 17 00:00:00 2001 From: Dylan De Faoite Date: Sun, 18 Jan 2026 23:31:23 +0000 Subject: [PATCH] removed unnecessary comments --- rewind/core.py | 1 - rewind/daemon.py | 1 - 2 files changed, 2 deletions(-) diff --git a/rewind/core.py b/rewind/core.py index fff515d..49a83f4 100644 --- a/rewind/core.py +++ b/rewind/core.py @@ -190,7 +190,6 @@ def get_duration(file_path: str) -> float: stderr=subprocess.STDOUT ) - # error checking if result.returncode != 0: raise RuntimeError(f"ffprobe failed for file {file_path}") diff --git a/rewind/daemon.py b/rewind/daemon.py index 0d519e3..74ea53e 100755 --- a/rewind/daemon.py +++ b/rewind/daemon.py @@ -19,7 +19,6 @@ def open_obs(): kill_command = subprocess.Popen(["pkill", "obs"]) kill_command.wait() - # remove .sentinel dir if exists if os.path.exists(os.path.expanduser("~/.config/obs-studio/.sentinel")): print("Removing existing .sentinel directory") subprocess.Popen(["rm", "-rf", os.path.expanduser("~/.config/obs-studio/.sentinel")])