Add type annots to vars inside `Render.render()`
parent
bc17308de7
commit
bf8ea33697
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue