Update pylint to 2.7.3 (#48488)

* Update pylint to 2.7.3

* Add class-const-naming-style

* Remove unused-import message

* Additional cleanup
This commit is contained in:
Marc Mueller
2021-03-30 06:02:56 +02:00
committed by GitHub
parent 9a75019a65
commit 2956eb0902
170 changed files with 163 additions and 288 deletions

View File

@@ -187,7 +187,7 @@ async def trace_action(hass, script_run, stop, variables):
try:
yield trace_element
except Exception as ex: # pylint: disable=broad-except
except Exception as ex:
trace_element.set_error(ex)
raise ex
finally: