Fix compatibility with python 3.5.2

We don’t lose anything, mypy will add these Optionals by itself since it
can see the = None.
This commit is contained in:
mathieui 2018-09-11 20:16:48 +02:00
parent 12700fdaee
commit 0b8fef46f7
No known key found for this signature in database
GPG key ID: C59F84CEEFD616E3

View file

@ -908,7 +908,7 @@ class Core:
### Tab getters ###
def get_tabs(self, cls: Optional[Type[tabs.Tab]] = None) -> List[tabs.Tab]:
def get_tabs(self, cls: Type[tabs.Tab] = None) -> List[tabs.Tab]:
"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)