aboutsummaryrefslogtreecommitdiff
path: root/discord/opus.py
diff options
context:
space:
mode:
authorHornwitser <[email protected]>2018-08-01 15:24:33 +0200
committerRapptz <[email protected]>2018-11-24 22:17:58 -0500
commitefb4ff850ea476d2aabc8ab4069a6d52ad602f42 (patch)
tree25d705c284c37a15d72f2419e9f6f1010a2f9e08 /discord/opus.py
parent[commands] Remove duplicated quote entries (diff)
downloaddiscord.py-efb4ff850ea476d2aabc8ab4069a6d52ad602f42.tar.xz
discord.py-efb4ff850ea476d2aabc8ab4069a6d52ad602f42.zip
[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.
Diffstat (limited to 'discord/opus.py')
-rw-r--r--discord/opus.py7
1 files changed, 4 insertions, 3 deletions
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)