aboutsummaryrefslogtreecommitdiff
path: root/newspipe/lib/feed_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/lib/feed_utils.py')
-rw-r--r--newspipe/lib/feed_utils.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/newspipe/lib/feed_utils.py b/newspipe/lib/feed_utils.py
index 47a32b43..15b3076c 100644
--- a/newspipe/lib/feed_utils.py
+++ b/newspipe/lib/feed_utils.py
@@ -4,10 +4,13 @@ import urllib
import feedparser
import requests
-from bs4 import BeautifulSoup, SoupStrainer
+from bs4 import BeautifulSoup
+from bs4 import SoupStrainer
from newspipe.bootstrap import application
-from newspipe.lib.utils import rebuild_url, try_get_icon_url, try_keys
+from newspipe.lib.utils import rebuild_url
+from newspipe.lib.utils import try_get_icon_url
+from newspipe.lib.utils import try_keys
logger = logging.getLogger(__name__)
logging.captureWarnings(True)
bgstack15