From af3defa722cbb07a289ebfc32f3ebf0772c55c17 Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Tue, 26 Aug 2025 21:46:11 -0500 Subject: [PATCH] wwvbtk: pyrefly can't handle these --- src/wwvb/wwvbtk.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/wwvb/wwvbtk.py b/src/wwvb/wwvbtk.py index e1f06e4..fb6e5ce 100755 --- a/src/wwvb/wwvbtk.py +++ b/src/wwvb/wwvbtk.py @@ -141,10 +141,12 @@ def main(colors: list[str], size: int, min_size: int | None) -> None: # noqa: P controller = controller_func().__next__ + # pyrefly: ignore # bad-assignment def after_func() -> None: """Repeatedly run the controller after the desired interval""" app.after(controller(), after_func) + # pyrefly: ignore # bad-argument-type app.after_idle(after_func) app.mainloop()