mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-11-16 16:54:51 +02:00
Comment: Updated a test expression to remove a logical short circuit.
This commit is contained in:
parent
71d06abaf4
commit
4d7b3fb9d6
@ -485,7 +485,7 @@ class Node:
|
||||
|
||||
# None properties are not be send. Because it can mean the emulator doesn't support it
|
||||
for key in list(data.keys()):
|
||||
if data[key] is None or data[key] is {} or key in self.CONTROLLER_ONLY_PROPERTIES:
|
||||
if data[key] is None or data[key] == {} or key in self.CONTROLLER_ONLY_PROPERTIES:
|
||||
del data[key]
|
||||
|
||||
return data
|
||||
|
Loading…
Reference in New Issue
Block a user