diff options
author | Elias Müller <elias.mr1@gmail.com> | 2022-07-09 18:17:00 +0200 |
---|---|---|
committer | jaseg <136313+jaseg@users.noreply.github.com> | 2022-07-11 12:44:47 +0200 |
commit | 3d90f471d26b1cefa8caebfa55479d81d1b54e5f (patch) | |
tree | 0a71e152031aaf069159d903291728da0b407711 /tests | |
parent | 91422de05a0e408f175433cc8ee8a29d46936be0 (diff) | |
download | python-mpv-3d90f471d26b1cefa8caebfa55479d81d1b54e5f.tar.gz python-mpv-3d90f471d26b1cefa8caebfa55479d81d1b54e5f.tar.bz2 python-mpv-3d90f471d26b1cefa8caebfa55479d81d1b54e5f.zip |
Remove unused imports
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/test_mpv.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/test_mpv.py b/tests/test_mpv.py index 670dbaf..d0590e3 100755 --- a/tests/test_mpv.py +++ b/tests/test_mpv.py @@ -18,18 +18,11 @@ import unittest from unittest import mock -import math import threading from contextlib import contextmanager -from functools import wraps -import gc import os.path import os -import sys import time -import io -import platform -import ctypes from concurrent.futures import Future os.environ["PATH"] = os.path.dirname(__file__) + os.pathsep + os.environ["PATH"] |