athena: fix random test failure (#24278)

pull/24279/head
Adeeb Shihadeh 3 years ago committed by GitHub
parent e515831e5f
commit 0fbb7a4673
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  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