From c4fc46727ca15caf74e70aa3b886d156c9c1bbef Mon Sep 17 00:00:00 2001 From: Florent Chehab Date: Thu, 23 Apr 2026 11:30:10 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A(summary)=20add=20ruff=20ignore=20o?= =?UTF-8?q?n=20ffprobe=20run?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It's hard to know the ffprobe path before hand depending on the environment, so I prefer to ignore the linting error. --- src/summary/summary/core/file_service.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/summary/summary/core/file_service.py b/src/summary/summary/core/file_service.py index 05b2524e..8fd356d5 100644 --- a/src/summary/summary/core/file_service.py +++ b/src/summary/summary/core/file_service.py @@ -155,6 +155,7 @@ class FileService: def _validate_duration(self, local_path: Path) -> float: """Validate audio file duration against configured maximum.""" + # ruff: noqa: S607 Hard to know the ffprobe path, it depends on the deployment result = subprocess.run( [ "ffprobe",