Add type annots to vars inside `Render.render()`

multichartz_backup
Tyler Goodlet 2022-12-18 19:50:41 -05:00
parent 6b805a8497
commit 42502f3c60
1 changed files with 3 additions and 3 deletions

View File

@ -203,9 +203,9 @@ class Renderer(msgspec.Struct):
):
should_redraw = True
path = self.path
fast_path = self.fast_path
reset = False
path: QPainterPath = self.path
fast_path: QPainterPath = self.fast_path
reset: bool = False
self.viz.yrange = None