mirror of
https://github.com/beetbox/beets.git
synced 2026-01-08 00:45:55 +01:00
Simpler __main__ docstring (#2453)
This commit is contained in:
parent
35e2ecf3dd
commit
a8d47f2c30
1 changed files with 2 additions and 10 deletions
|
|
@ -13,16 +13,8 @@
|
|||
# The above copyright notice and this permission notice shall be
|
||||
# included in all copies or substantial portions of the Software.
|
||||
|
||||
"""main module.
|
||||
|
||||
This module will be executed when beets module is run with `-m`.
|
||||
|
||||
Example : `python -m beets`
|
||||
|
||||
Related links about __main__.py:
|
||||
|
||||
* python3 docs entry: https://docs.python.org/3/library/__main__.html
|
||||
* related SO: http://stackoverflow.com/q/4042905
|
||||
"""The __main__ module lets you run the beets CLI interface by typing
|
||||
`python -m beets`.
|
||||
"""
|
||||
|
||||
from __future__ import division, absolute_import, print_function
|
||||
|
|
|
|||
Loading…
Reference in a new issue