This commit is contained in:
Yohann D'ANELLO
2020-11-11 20:36:43 +01:00
parent f33d8b8170
commit 53077aacb0
4 changed files with 13 additions and 8 deletions

View File

@@ -1,3 +1,5 @@
from typing import List
from dungeonbattle.menus import Menu, MainMenu
from .display import Display
@@ -54,7 +56,7 @@ class MenuDisplay(Display):
return self.trueheight + 2
@property
def values(self):
def values(self) -> List[str]:
return [str(a) for a in self.menu.values]