From 0fbb7a4673ae02a5d2efafabfdccba194a0a8ebf Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Wed, 20 Apr 2022 13:20:50 -0700 Subject: [PATCH] athena: fix random test failure (#24278) --- selfdrive/athena/athenad.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/selfdrive/athena/athenad.py b/selfdrive/athena/athenad.py index 71a18aff73..919cf0c04e 100755 --- a/selfdrive/athena/athenad.py +++ b/selfdrive/athena/athenad.py @@ -255,12 +255,12 @@ def getMessage(service=None, timeout=1000): @dispatcher.add_method -def getVersion(): +def getVersion() -> Dict[str, str]: return { "version": get_version(), - "remote": get_origin(), - "branch": get_short_branch(), - "commit": get_commit(), + "remote": get_origin(''), + "branch": get_short_branch(''), + "commit": get_commit(default=''), }