Skip to content

Commit ad73bb3

Browse files
committed
fix
1 parent e553d07 commit ad73bb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codeflash/result/common_tags.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ def find_common_tags(articles: list[dict[str, list[str]]]) -> set[str]:
77

88
common_tags = articles[0].get("tags", [])
99
for article in articles[1:]:
10-
common_tags = [tag for tag in common_tags if tag in article.get("tags", [])]
10+
common_tags = [tag for tag in common_tags if tag in article.get("tags", [])]
1111
return set(common_tags)
1212

0 commit comments

Comments
 (0)