mirror of
https://github.com/home-assistant/core.git
synced 2025-12-26 22:18:40 +00:00
Pylint 2 fixes (#15487)
* pylint 2 inline disable syntax fixes * pylint 2 logging-not-lazy fixes * pylint 2 consider-using-in fixes * Revert pylint 2 inline disable syntax fixes addressing unused-imports Will have a go at removing more unused imports altogether first.
This commit is contained in:
committed by
Paulus Schoutsen
parent
d2f4bce6c0
commit
e31dd4404e
@@ -89,7 +89,7 @@ class TestEmulatedHue(unittest.TestCase):
|
||||
# Make sure the XML is parsable
|
||||
try:
|
||||
ET.fromstring(result.text)
|
||||
except: # noqa: E722 # pylint: disable=bare-except
|
||||
except: # noqa: E722 pylint: disable=bare-except
|
||||
self.fail('description.xml is not valid XML!')
|
||||
|
||||
def test_create_username(self):
|
||||
|
||||
Reference in New Issue
Block a user