1
0
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:
Franck Nijhof
2019-09-25 00:38:20 +02:00
committed by Paulus Schoutsen
parent 6fdff9ffab
commit 9c9c921922
26 changed files with 30 additions and 30 deletions

View File

@@ -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