(self)
| 87 | """Fake callback used for testing. Tracks the frame numbers the callback was invoked with.""" |
| 88 | |
| 89 | def __init__(self): |
| 90 | self.scene_list: list[int] = [] |
| 91 | |
| 92 | def get_callback_lambda(self): |
| 93 | """For testing using a lambda..""" |
nothing calls this directly
no outgoing calls
no test coverage detected