Make sure joy.gui.main.__doc__ is at the top of the module.

This commit is contained in:
Simon Forman 2020-04-24 10:47:23 -07:00
parent 6fe11aa205
commit d991fad3c3
1 changed files with 3 additions and 3 deletions

View File

@ -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