Pylint cleanups (#15626)
* Pylint 2 no-else-return fixes * Remove unneeded abstract-class-not-used pylint disable
This commit is contained in:
parent
a38c0d6d15
commit
b7c336a687
166 changed files with 425 additions and 490 deletions
|
@ -38,10 +38,8 @@ def is_serial_port(value):
|
|||
ports = ('COM{}'.format(idx + 1) for idx in range(256))
|
||||
if value in ports:
|
||||
return value
|
||||
else:
|
||||
raise vol.Invalid('{} is not a serial port'.format(value))
|
||||
else:
|
||||
return cv.isdevice(value)
|
||||
raise vol.Invalid('{} is not a serial port'.format(value))
|
||||
return cv.isdevice(value)
|
||||
|
||||
|
||||
def is_socket_address(value):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue