mypy: Add type annotations for browsertab.AbstractAction

This commit is contained in:
Florian Bruhin 2018-11-26 18:22:02 +01:00
parent 7834e3c7dd
commit 4b4b746791

View File

@ -136,8 +136,8 @@ class AbstractAction:
action_base: The type of the actions (QWeb{Engine,}Page.WebAction)
"""
action_class = None
action_base = None
action_class = None # type: type
action_base = None # type: type
def __init__(self, tab):
self._widget = None