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

multichartz
Tyler Goodlet 2022-12-18 19:50:41 -05:00
parent 3866fcac9a
commit 62c7d42f1e
1 changed files with 3 additions and 3 deletions

View File

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