From d991fad3c3b503b3e56fa5e4dfb54361c1b303c7 Mon Sep 17 00:00:00 2001 From: Simon Forman Date: Fri, 24 Apr 2020 10:47:23 -0700 Subject: [PATCH] Make sure joy.gui.main.__doc__ is at the top of the module. --- joy/gui/main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/joy/gui/main.py b/joy/gui/main.py index 688183d..0e75fd8 100755 --- a/joy/gui/main.py +++ b/joy/gui/main.py @@ -1,8 +1,5 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -from __future__ import print_function -from future import standard_library -standard_library.install_aliases() ('''\ Joypy - Copyright © 2018 Simon Forman ''' @@ -10,6 +7,9 @@ Joypy - Copyright © 2018 Simon Forman ' This is free software, and you are welcome to redistribute it under certain conditions;' ' right-click "sharing" for details.' ' Right-click on these commands to see docs on UI commands: key_bindings mouse_bindings') +from __future__ import print_function +from future import standard_library +standard_library.install_aliases() import logging, os, pickle, sys from textwrap import dedent from configparser import RawConfigParser