Added myself as contributor

This commit is contained in:
Dustin Pianalto 2018-05-23 14:10:53 -08:00
parent dc3a34651f
commit ae6eee1a8d
2 changed files with 4 additions and 4 deletions

View File

@ -6,7 +6,7 @@ Sebi-Machine.
__author__ = 'Annihilator708' __author__ = 'Annihilator708'
# TODO: add yourselves here. I can't remember everyones handles. # TODO: add yourselves here. I can't remember everyones handles.
__contributors__ = (__author__, 'Neko404NotFound',) __contributors__ = (__author__, 'Neko404NotFound', 'Dusty.P')
__license__ = 'MIT' __license__ = 'MIT'
__title__ = 'Sebi-Machine' __title__ = 'Sebi-Machine'
__version__ = 'tbd' __version__ = 'tbd'

View File

@ -29,12 +29,12 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
import discord import discord
from discord.ext import commands from discord.ext import commands
import logging from src.shared_libs.utils import paginate, run_command
from ..shared_libs.utils import paginate, run_command, loggable from src.shared_libs.loggable import Loggable
import asyncio import asyncio
class Git(loggable.Loggable): class Git(Loggable):
def __init__(self, bot): def __init__(self, bot):
self.bot = bot self.bot = bot