Skip to content

Commit fb31c3b

Browse files
committed
Missing await
This is likely a sure sign that I need to get tests of the controller framework written...
1 parent 2bb6c2c commit fb31c3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/flitter/render/controller/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ async def update(self, engine, node, time, **kwargs):
7575
unknown.add(child.kind)
7676
for kind in unknown.difference(self.unknown):
7777
logger.warning("Unhandled node in controller: {!r}", child)
78-
self.purge()
78+
await self.purge()
7979
self.unknown = unknown
8080
self.controls = controls
8181
await self.driver.finish_update()

0 commit comments

Comments
 (0)