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:
committed by
Paulus Schoutsen
parent
a38c0d6d15
commit
b7c336a687
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user