From c687e4614fff833ddbef5bec005ed16fc7103a8d Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Tue, 26 Aug 2025 17:27:34 -0700 Subject: [PATCH] removed dead import --- ucsinfer/util.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/ucsinfer/util.py b/ucsinfer/util.py index 003faef..51b9bf6 100644 --- a/ucsinfer/util.py +++ b/ucsinfer/util.py @@ -4,9 +4,6 @@ from typing import NamedTuple, Optional from re import match -from .inference import Ucs - - def ffmpeg_description(path: str) -> Optional[str]: result = subprocess.run(['ffprobe', '-show_format', '-of', 'json', path], capture_output=True)