Linting and typing fixes.

This commit is contained in:
Frédéric Tronel
2026-08-29 16:07:29 +02:00
parent 294d857206
commit 0ff2e3a6dd
7 changed files with 43 additions and 77 deletions
+3 -4
View File
@@ -3,10 +3,6 @@
# Copyright (C) 2026 Frédéric Tronel
from typing import IO
from typeguard import typechecked
class TSCutError(Exception):
"""Base exception for tscut."""
@@ -21,3 +17,6 @@ class ExternalToolError(TSCutError):
class InvalidMediaError(TSCutError):
"""Raised when input media cannot be processed."""
class UnimplementedFeature(TSCutError):
"""Raised when a rare feature is encountered and not yet implemented"""