From bf134a5105ab26df67061cd7077f33602c2ed941 Mon Sep 17 00:00:00 2001 From: Crussader <75786691+Crussader@users.noreply.github.com> Date: Thu, 28 Oct 2021 18:38:15 +0400 Subject: [PATCH] code cleanup --- pomice/__init__.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pomice/__init__.py b/pomice/__init__.py index 258ce0f..7d23216 100644 --- a/pomice/__init__.py +++ b/pomice/__init__.py @@ -1,7 +1,7 @@ """Pomice wrapper for Lavalink, made possible by cloudwithax 2021""" import discord -if discord.__version__ != '2.0.0a': +if discord.__version__ != "2.0.0a": class DiscordPyOutdated(Exception): pass @@ -11,7 +11,7 @@ if discord.__version__ != '2.0.0a': "using 'pip install git+https://github.com/Rapptz/discord.py@master'" ) -__version__ = "1.0.7.1" +__version__ = "1.0.7.2" __title__ = "pomice" __author__ = "cloudwithax" @@ -22,4 +22,3 @@ from .filters import * from .objects import * from .player import Player from .pool import * -