Skip to content

Commit

Permalink
Missing await
Browse files Browse the repository at this point in the history
This is likely a sure sign that I need to get tests of the controller 
framework written...
  • Loading branch information
jonathanhogg committed Jan 6, 2025
1 parent 2bb6c2c commit fb31c3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/flitter/render/controller/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ async def update(self, engine, node, time, **kwargs):
unknown.add(child.kind)
for kind in unknown.difference(self.unknown):
logger.warning("Unhandled node in controller: {!r}", child)
self.purge()
await self.purge()
self.unknown = unknown
self.controls = controls
await self.driver.finish_update()
Expand Down

0 comments on commit fb31c3b

Please sign in to comment.