bumping ruff version

This commit is contained in:
msramalho
2026-02-23 12:36:53 +00:00
parent 8a4a314cf9
commit 2d13077fad
3 changed files with 23 additions and 23 deletions

View File

@@ -34,7 +34,7 @@ def _extract_metadata(self, webpage, video_id):
...,
"attachments",
...,
lambda k, v: (k == "media" and str(v["id"]) == video_id and v["__typename"] == "Video"),
lambda k, v: k == "media" and str(v["id"]) == video_id and v["__typename"] == "Video",
),
expected_type=dict,
)