Moving operator before line break.
This commit is contained in:
parent
f30c051272
commit
76a653664e
1 changed files with 4 additions and 4 deletions
|
@ -166,10 +166,10 @@ def main(args=None):
|
||||||
|
|
||||||
for dev in api.devices:
|
for dev in api.devices:
|
||||||
if (
|
if (
|
||||||
not command_line.device_id
|
not command_line.device_id or
|
||||||
or (
|
(
|
||||||
command_line.device_id.strip().lower()
|
command_line.device_id.strip().lower() ==
|
||||||
== dev.content["id"].strip().lower()
|
dev.content["id"].strip().lower()
|
||||||
)
|
)
|
||||||
):
|
):
|
||||||
# List device(s)
|
# List device(s)
|
||||||
|
|
Loading…
Reference in a new issue