summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2015-09-19 09:29:00 +0300
committerLars Wirzenius <liw@liw.fi>2015-09-19 09:29:00 +0300
commit4c3ead874f0b63fbe562957c0a55f452e01db54e (patch)
treee10e69def01379f6d7a0b69d1603c86a136ed3f5
parentc082ad5134bbce741d7064d6322b6711694cad3a (diff)
downloadttystatus-4c3ead874f0b63fbe562957c0a55f452e01db54e.tar.gz
Move __version__ to after imports, for pep8
-rw-r--r--ttystatus/__init__.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/ttystatus/__init__.py b/ttystatus/__init__.py
index 2477e08..2eab310 100644
--- a/ttystatus/__init__.py
+++ b/ttystatus/__init__.py
@@ -13,9 +13,6 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-__version__ = '0.23'
-
from .messager import Messager
from .status import TerminalStatus
from .widget import Widget
@@ -35,4 +32,8 @@ from .bytespeed import ByteSpeed
from .fmt import parse
+
+__version__ = '0.23'
+
+
__all__ = locals()