Fix `pairs` type annotation

kivy_mainline_and_py3.8
Tyler Goodlet 2018-08-22 22:54:09 -04:00
parent 96b17e16ac
commit b2acfdaf42
1 changed files with 1 additions and 1 deletions

View File

@ -287,7 +287,7 @@ class TickerTable(GridLayout):
return row
def render_rows(
self, pairs: (dict, Row), sort_key: str = None, row_filter=None,
self, pairs: {str: (dict, Row)}, sort_key: str = None, row_filter=None,
):
"""Sort and render all rows on the ticker grid from ``pairs``.
"""