From 239d47aa1a417e571527d61e3b51638908f708d4 Mon Sep 17 00:00:00 2001 From: mathieui Date: Wed, 12 Sep 2018 19:30:04 +0200 Subject: Fix compatibility with python 3.5.2 --- poezio/core/core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'poezio/core/core.py') diff --git a/poezio/core/core.py b/poezio/core/core.py index 580e4c76..6cfdefdb 100644 --- a/poezio/core/core.py +++ b/poezio/core/core.py @@ -908,7 +908,7 @@ class Core: ### Tab getters ### - def get_tabs(self, cls: Optional[Type[tabs.Tab]] = None): + def get_tabs(self, cls: Type[tabs.Tab] = None): "Get all the tabs of a type" if cls is None: return self.tabs.get_tabs() @@ -1047,7 +1047,7 @@ class Core: def focus_tab_named(self, tab_name: str, - type_: Optional[Type[tabs.Tab]] = None) -> bool: + type_: Type[tabs.Tab] = None) -> bool: """Returns True if it found a tab to focus on""" if type_ is None: tab = self.tabs.by_name(tab_name) -- cgit v1.2.3