no longer necessary to call AIService super().start/stop/cancel(frame)

This commit is contained in:
Aleix Conchillo Flaqué
2024-12-12 14:45:20 -08:00
parent 10f854aeba
commit 3f3a853d71
10 changed files with 16 additions and 29 deletions

View File

@@ -15,6 +15,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- It's no longer necessary to call `super().start/stop/cancel(frame)` if you
subclass and implement `AIService.start/stop/cancel()`. This is all now done
internally and will avoid possible issues if you forget to add it.
- It's no longer necessary to call `super().process_frame(frame, direction)` if
you subclass and implement `FrameProcessor.process_frame()`. This is all now
done internally and will avoid possible issues if you forget to add it.