From a78576e2f95a96a5c45479c7afb92602f1ac8c0f Mon Sep 17 00:00:00 2001 From: coletdjnz Date: Tue, 11 Feb 2025 19:31:48 +1300 Subject: [PATCH] Autopep8 ignore lazy_extractors.py --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5eb9a9644..cdbad4244 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -383,7 +383,10 @@ select = [ "E704", "W391", "W504", -] + ] + exclude = [ + "yt_dlp/extractor/lazy_extractors.py" + ] [tool.pytest.ini_options] addopts = "-ra -v --strict-markers"