athena: fix random test failure (#24278)

old-commit-hash: 0fbb7a4673
taco
Adeeb Shihadeh 3 years ago committed by GitHub
parent 3e201c015d
commit 709e683bf4
  1. 8
      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=''),
}

Loading…
Cancel
Save