mirror of
https://github.com/beetbox/beets.git
synced 2025-12-27 02:52:33 +01:00
Noticed GitHub linter wanted a docstring.
This commit is contained in:
parent
086fec0096
commit
6c64ab6df1
1 changed files with 9 additions and 0 deletions
|
|
@ -11,6 +11,15 @@
|
|||
# The above copyright notice and this permission notice shall be
|
||||
# included in all copies or substantial portions of the Software.
|
||||
|
||||
"""Adds head/tail functionality to list/ls.
|
||||
|
||||
1. Implemented as `lslimit` command with `--head` and `--tail` options. This is
|
||||
the idiomatic way to use this plugin.
|
||||
2. Implemented as query prefix `<` for head functionality only. This is the
|
||||
composable way to use the plugin (plays nicely with anything that uses the
|
||||
query language).
|
||||
"""
|
||||
|
||||
from beets.dbcore import FieldQuery
|
||||
from beets.plugins import BeetsPlugin
|
||||
from beets.ui import Subcommand, decargs, print_
|
||||
|
|
|
|||
Loading…
Reference in a new issue