Skip to content

Commit 0e43f29

Browse files
committed
Fix mypy errors
1 parent ff0eee9 commit 0e43f29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/in_container/run_provider_yaml_files_check.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -609,12 +609,12 @@ def check_doc_files(yaml_files: dict[str, dict]) -> tuple[int, int]:
609609
if f.name != "index.rst" and "_partials" not in f.parts and f.parts[2] == "docs"
610610
}
611611

612-
expected_doc_urls = [
612+
expected_doc_urls = {
613613
doc_url
614614
for doc_url in expected_doc_urls
615615
for suspend_provider in suspended_providers
616616
if suspend_provider not in doc_url
617-
]
617+
}
618618

619619
if suspended_logos:
620620
console.print("[yellow]Suspended logos:[/]")

0 commit comments

Comments
 (0)