Fixed arg annotation for ba.submit_score

This commit is contained in:
Eric Froemling 2020-04-06 21:13:25 -07:00
parent 039b6df851
commit 4bbf3abdd1

View File

@ -34,7 +34,7 @@ NOTE: This file was autogenerated by gendummymodule; do not edit by hand.
"""
# (hash we can use to see if this file is out of date)
# SOURCES_HASH=89571062497226096192068426852932188085
# SOURCES_HASH=98060135444187925075927346963557892275
# I'm sorry Pylint. I know this file saddens you. Be strong.
# pylint: disable=useless-suppression
@ -3607,7 +3607,7 @@ def submit_analytics_counts() -> None:
def submit_score(game: str,
config: str,
name: Any,
score: int,
score: Optional[int],
callback: Callable,
friend_callback: Optional[Callable],
order: str = 'increasing',
@ -3615,7 +3615,7 @@ def submit_score(game: str,
score_type: str = 'points',
campaign: Optional[ba.Campaign] = None,
level: Optional[ba.Level] = None) -> None:
"""submit_score(game: str, config: str, name: Any, score: int,
"""submit_score(game: str, config: str, name: Any, score: Optional[int],
callback: Callable, friend_callback: Optional[Callable],
order: str = 'increasing', tournament_id: Optional[str] = None,
score_type: str = 'points',