Use assignment expressions 19 (#57968)

This commit is contained in:
Marc Mueller 2021-10-18 15:54:38 +02:00 committed by GitHub
parent 786e1f9b6a
commit ff853b2d53
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
23 changed files with 24 additions and 51 deletions

View file

@ -116,8 +116,7 @@ class PyLoadSensor(SensorEntity):
)
return
value = self.api.status.get(self.type)
if value is None:
if (value := self.api.status.get(self.type)) is None:
_LOGGER.warning("Unable to locate value for %s", self.type)
return