From efb4ff850ea476d2aabc8ab4069a6d52ad602f42 Mon Sep 17 00:00:00 2001 From: Hornwitser Date: Wed, 1 Aug 2018 15:24:33 +0200 Subject: [lint] Fix import order Reorder imports to be consistenly grouped by standard library, third party library, and local modules in that order thoughout the library. --- discord/opus.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'discord/opus.py') diff --git a/discord/opus.py b/discord/opus.py index 175867cd..0fe5184b 100644 --- a/discord/opus.py +++ b/discord/opus.py @@ -24,13 +24,14 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ +import array import ctypes import ctypes.util -import array -from .errors import DiscordException import logging -import sys import os.path +import sys + +from .errors import DiscordException log = logging.getLogger(__name__) c_int_ptr = ctypes.POINTER(ctypes.c_int) -- cgit v1.2.3