Skip to content

Commit 2cef76f

Browse files
committed
fix docstring
1 parent 0fda611 commit 2cef76f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/files/filters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ def filter_taggers_all(
258258
def filter_taggers_any(
259259
self, queryset: models.QuerySet[BaseFile], name: str, value: str
260260
) -> models.QuerySet[BaseFile]:
261-
"""Include only files tagged by any of the selected tags."""
261+
"""Include only files tagged by any of the selected taggers."""
262262
if not value:
263263
return queryset
264264
return queryset.filter(taggings__tagger__handle__in=value)

0 commit comments

Comments
 (0)