Remove unused imports

This commit is contained in:
Tulir Asokan 2018-12-13 23:36:04 +02:00
parent ee04cc59a2
commit ecc1843119
2 changed files with 2 additions and 2 deletions

View file

@ -28,7 +28,7 @@ from ...loader import PluginMeta
from ..cliq.validators import PathValidator
from ..base import app
from ..config import config
from .upload import upload_file, UploadError
from .upload import upload_file
yaml = YAML()

View file

@ -15,7 +15,7 @@
# along with this program. If not, see <https://www.gnu.org/licenses/>.
from urllib.request import urlopen, Request
from urllib.error import HTTPError
from typing import IO, Tuple
from typing import IO
import json
from colorama import Fore