From 35e2ecf3dd64f2fc8a7fe7455e4b2207434d0994 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Sat, 25 Feb 2017 13:37:44 -0500 Subject: [PATCH] Fix order of header comment vs. docstring (#2453) --- beets/__main__.py | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/beets/__main__.py b/beets/__main__.py index 5f10c5b9b..608cc0bd0 100644 --- a/beets/__main__.py +++ b/beets/__main__.py @@ -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