summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bs4/tests/test_soup.py
diff options
context:
space:
mode:
authorFrazer Clews <frazer.clews@codethink.co.uk>2020-01-16 16:55:18 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-01-19 13:31:05 +0000
commit0ac5174c7d39a3e49893df0d517d47bec1935555 (patch)
tree479496afb1da7814071e39e888e8926cd03bec57 /bitbake/lib/bs4/tests/test_soup.py
parent444bcb6cb6be8d5205fc88790360d864e633a555 (diff)
downloadpoky-0ac5174c7d39a3e49893df0d517d47bec1935555.tar.gz
bitbake: lib: remove unused imports
removed unused imports which made the code harder to read, and slightly but less efficient (Bitbake rev: 4367692a932ac135c5aa4f9f2a4e4f0150f76697) Signed-off-by: Frazer Clews <frazer.clews@codethink.co.uk> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bs4/tests/test_soup.py')
-rw-r--r--bitbake/lib/bs4/tests/test_soup.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/bitbake/lib/bs4/tests/test_soup.py b/bitbake/lib/bs4/tests/test_soup.py
index f87949e3d3..6ad3cb3765 100644
--- a/bitbake/lib/bs4/tests/test_soup.py
+++ b/bitbake/lib/bs4/tests/test_soup.py
@@ -1,16 +1,12 @@
1# -*- coding: utf-8 -*- 1# -*- coding: utf-8 -*-
2"""Tests of Beautiful Soup as a whole.""" 2"""Tests of Beautiful Soup as a whole."""
3 3
4from pdb import set_trace
5import logging 4import logging
6import unittest 5import unittest
7import sys 6import sys
8import tempfile 7import tempfile
9 8
10from bs4 import ( 9from bs4 import BeautifulSoup
11 BeautifulSoup,
12 BeautifulStoneSoup,
13)
14from bs4.element import ( 10from bs4.element import (
15 CharsetMetaAttributeValue, 11 CharsetMetaAttributeValue,
16 ContentMetaAttributeValue, 12 ContentMetaAttributeValue,