removed unnecessary comments

This commit is contained in:
2026-01-18 23:31:23 +00:00
parent 47fe0e37e9
commit 7a2b4e806f
2 changed files with 0 additions and 2 deletions

View File

@@ -190,7 +190,6 @@ def get_duration(file_path: str) -> float:
stderr=subprocess.STDOUT stderr=subprocess.STDOUT
) )
# error checking
if result.returncode != 0: if result.returncode != 0:
raise RuntimeError(f"ffprobe failed for file {file_path}") raise RuntimeError(f"ffprobe failed for file {file_path}")

View File

@@ -19,7 +19,6 @@ def open_obs():
kill_command = subprocess.Popen(["pkill", "obs"]) kill_command = subprocess.Popen(["pkill", "obs"])
kill_command.wait() kill_command.wait()
# remove .sentinel dir if exists
if os.path.exists(os.path.expanduser("~/.config/obs-studio/.sentinel")): if os.path.exists(os.path.expanduser("~/.config/obs-studio/.sentinel")):
print("Removing existing .sentinel directory") print("Removing existing .sentinel directory")
subprocess.Popen(["rm", "-rf", os.path.expanduser("~/.config/obs-studio/.sentinel")]) subprocess.Popen(["rm", "-rf", os.path.expanduser("~/.config/obs-studio/.sentinel")])