Reindent - 2to3 - Add "Don't pretend to be me!"

This commit is contained in:
Matthias Meusburger 2017-01-23 17:35:35 +01:00
parent d0992312b8
commit 906961fddf
2 changed files with 773 additions and 759 deletions

View File

@ -34,6 +34,7 @@ This is a DuckHunt game for supybot
import supybot
import supybot.world as world
from imp import reload
# Use this for the version of this plugin. You may wish to put a CVS keyword
# in here if you're keeping the plugin in CVS or some similar system.
@ -49,14 +50,14 @@ __contributors__ = {}
# This is a url where the most recent plugin package can be downloaded.
__url__ = 'https://github.com/veggiematts/supybot-duckhunt'
import config
import plugin
from . import config
from . import plugin
reload(plugin) # In case we're being reloaded.
# Add more reloads here if you add third-party modules and want them to be
# reloaded when this plugin is reloaded. Don't forget to import them as well!
if world.testing:
import test
from . import test
Class = plugin.Class
configure = config.configure

1525
plugin.py

File diff suppressed because it is too large Load Diff