mirror of
https://github.com/home-assistant/core.git
synced 2025-12-24 21:06:19 +00:00
Use Python3 new super syntax sugar (#26890)
This commit is contained in:
committed by
Paulus Schoutsen
parent
6fdff9ffab
commit
9c9c921922
@@ -34,7 +34,7 @@ class NestCamera(Camera):
|
||||
|
||||
def __init__(self, structure, device):
|
||||
"""Initialize a Nest Camera."""
|
||||
super(NestCamera, self).__init__()
|
||||
super().__init__()
|
||||
self.structure = structure
|
||||
self.device = device
|
||||
self._location = None
|
||||
|
||||
Reference in New Issue
Block a user