mirror of
https://github.com/beetbox/beets.git
synced 2026-01-01 13:33:02 +01:00
Fix order of header comment vs. docstring (#2453)
This commit is contained in:
parent
94a897fde5
commit
35e2ecf3dd
1 changed files with 12 additions and 11 deletions
|
|
@ -1,15 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
"""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
|
||||
"""
|
||||
# This file is part of beets.
|
||||
# Copyright 2017, Adrian Sampson.
|
||||
#
|
||||
|
|
@ -24,6 +13,18 @@ Related links about __main__.py:
|
|||
# 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
|
||||
"""
|
||||
|
||||
from __future__ import division, absolute_import, print_function
|
||||
|
||||
import sys
|
||||
|
|
|
|||
Loading…
Reference in a new issue