1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-25 05:26:47 +00:00

Pylint cleanups (#15626)

* Pylint 2 no-else-return fixes

* Remove unneeded abstract-class-not-used pylint disable
This commit is contained in:
Ville Skyttä
2018-07-23 11:16:05 +03:00
committed by Paulus Schoutsen
parent a38c0d6d15
commit b7c336a687
166 changed files with 425 additions and 490 deletions

View File

@@ -52,10 +52,10 @@ def run(args):
if args[0] == 'install':
install_osx()
return 0
elif args[0] == 'uninstall':
if args[0] == 'uninstall':
uninstall_osx()
return 0
elif args[0] == 'restart':
if args[0] == 'restart':
uninstall_osx()
# A small delay is needed on some systems to let the unload finish.
time.sleep(0.5)