We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e553d07 commit ad73bb3Copy full SHA for ad73bb3
codeflash/result/common_tags.py
@@ -7,6 +7,6 @@ def find_common_tags(articles: list[dict[str, list[str]]]) -> set[str]:
7
8
common_tags = articles[0].get("tags", [])
9
for article in articles[1:]:
10
- common_tags = [tag for tag in common_tags if tag in article.get("tags", [])]
+ common_tags = [tag for tag in common_tags if tag in article.get("tags", [])]
11
return set(common_tags)
12
0 commit comments