1
0
Fork 0
mirror of synced 2024-05-14 01:02:42 +12:00

Remove unused imports

This commit is contained in:
Serene-Arc 2021-07-02 14:58:20 +10:00
parent 390ce57f46
commit 6efcf1ce7e
6 changed files with 0 additions and 10 deletions

View file

@ -1,10 +1,8 @@
#!/usr/bin/env python3
import logging
import re
from typing import Optional
import bs4
import requests
from praw.models import Submission

View file

@ -2,14 +2,10 @@
# coding=utf-8
import logging
import tempfile
from pathlib import Path
from typing import Optional
import youtube_dl
from praw.models import Submission
from bdfr.exceptions import NotADownloadableLinkError, SiteDownloaderError
from bdfr.resource import Resource
from bdfr.site_authenticator import SiteAuthenticator
from bdfr.site_downloaders.youtube import Youtube

View file

@ -4,7 +4,6 @@ import json
import re
from typing import Optional
from bs4 import BeautifulSoup
from praw.models import Submission
from bdfr.exceptions import SiteDownloaderError

View file

@ -1,7 +1,6 @@
#!/usr/bin/env python3
# coding=utf-8
import re
import shutil
from pathlib import Path

View file

@ -1,7 +1,6 @@
#!/usr/bin/env python3
# coding=utf-8
import re
import shutil
from pathlib import Path

View file

@ -9,7 +9,6 @@ from unittest.mock import MagicMock, patch
import praw.models
import pytest
import bdfr.site_downloaders.download_factory
from bdfr.__main__ import setup_logging
from bdfr.configuration import Configuration
from bdfr.connector import RedditConnector