Fixed return tyep on _ba.get_public_login_id().

This commit is contained in:
Eric Froemling 2020-04-10 13:45:55 -07:00
parent 4497b6cab1
commit 3066ee821f

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=126196922259492504803685031830587478733
# SOURCES_HASH=106879997712807296258529817433289194930
# I'm sorry Pylint. I know this file saddens you. Be strong.
# pylint: disable=useless-suppression
@ -2191,12 +2191,12 @@ def get_price(item: str) -> Optional[str]:
return ""
def get_public_login_id() -> str:
"""get_public_login_id() -> str
def get_public_login_id() -> Optional[str]:
"""get_public_login_id() -> Optional[str]
(internal)
"""
return str()
return ""
def get_public_party_enabled() -> bool: