Properly call super() in subclasses (#14124)

This commit is contained in:
gtsiam
2024-10-03 04:35:46 +03:00
committed by GitHub
parent 3c015bf822
commit 54900ae318
18 changed files with 19 additions and 38 deletions

View File

@@ -57,7 +57,7 @@ class RecordingExporter(threading.Thread):
end_time: int,
playback_factor: PlaybackFactorEnum,
) -> None:
threading.Thread.__init__(self)
super().__init__()
self.config = config
self.export_id = id
self.camera = camera