2020-11-08 23:03:59 +01:00

13 lines
294 B
Python

import curses
from typing import Any
class Display:
def __init__(self, screen: Any):
self.screen = screen
self.rows = curses.LINES if screen else 4
self.cols = curses.COLS * 4 // 5 if screen else 4
def refresh(self) -> None:
raise NotImplementedError