Skip to content

Commit 4120070

Browse files
committed
Ignore type.
1 parent c11cb59 commit 4120070

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

agentstack/tui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1080,7 +1080,7 @@ def __init__(self, coords: tuple[int, int]):
10801080
def render(self) -> None:
10811081
self.grid.addstr(0, 1, f"FPS: {1 / (time.time() - self.last_render):.0f}")
10821082
self.grid.addstr(0, 10, f"Colors: {len(Color._color_map)}/{curses.COLORS}")
1083-
self.grid.addstr(0, 27, f"Dims: {self.parent.width}x{self.parent.height}")
1083+
self.grid.addstr(0, 27, f"Dims: {self.parent.width}x{self.parent.height}") # type: ignore
10841084

10851085

10861086
class View(Contains):

0 commit comments

Comments
 (0)