Return name of location to lock instead of serial number. (#2460)
This commit is contained in:
parent
216a756590
commit
3e3d9c881e
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ class VerisureDoorlock(LockDevice):
|
|||
@property
|
||||
def name(self):
|
||||
"""Return the name of the lock."""
|
||||
return 'Lock {}'.format(self._id)
|
||||
return '{}'.format(hub.lock_status[self._id].location)
|
||||
|
||||
@property
|
||||
def state(self):
|
||||
|
|
Loading…
Add table
Reference in a new issue