From 7779e857e040733e04c95ab0b129693170df4db8 Mon Sep 17 00:00:00 2001 From: Olivier Gayot Date: Mon, 8 Nov 2021 22:17:14 +0100 Subject: Add type hints for screen package Signed-off-by: Olivier Gayot --- pycameltris/screens/Screen.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pycameltris/screens/Screen.py') diff --git a/pycameltris/screens/Screen.py b/pycameltris/screens/Screen.py index 01f80ab..419c1d2 100644 --- a/pycameltris/screens/Screen.py +++ b/pycameltris/screens/Screen.py @@ -3,10 +3,10 @@ import abc class Screen(abc.ABC): @abc.abstractmethod - def refresh(self): + def refresh(self) -> None: pass @abc.abstractmethod - def oneframe(self): + def oneframe(self) -> None: pass -- cgit v1.2.3