diff --git a/.github/workflows/changelog_reminder.yaml b/.github/workflows/changelog_reminder.yaml index 5cfed3a90..da0f670a0 100644 --- a/.github/workflows/changelog_reminder.yaml +++ b/.github/workflows/changelog_reminder.yaml @@ -16,7 +16,8 @@ jobs: id: changed-python-files uses: tj-actions/changed-files@v44 with: - files: **.py + files: | + **.py - name: Check for the changelog update id: changelog-update diff --git a/beets/plugins.py b/beets/plugins.py index e1ac7d618..35995c341 100644 --- a/beets/plugins.py +++ b/beets/plugins.py @@ -147,7 +147,7 @@ class BeetsPlugin: return wrapper def queries(self): - """Should return a dict mapping prefixes to Query subclasses.""" + """Return a dict mapping prefixes to Query subclasses.""" return {} def track_distance(self, item, info):