Twiddle refactors

This commit is contained in:
Jamie Hardt
2020-09-20 23:17:15 -07:00
parent 2bc750d269
commit 4855a663db
2 changed files with 1 additions and 2 deletions

View File

@@ -70,7 +70,7 @@ def closest_approach_to_camera(scene, speaker_object) -> (float, int):
max_dist = dist
at_time = frame
return (max_dist, at_time)
return max_dist, at_time
def speaker_active_time_range(speaker) -> FrameInterval:

View File

@@ -138,7 +138,6 @@ class ObjectMix:
self.intermediate_filename = None
#@contextmanager
class ObjectMixPool:
def __init__(self, object_mixes: List[ObjectMix]):