openpilot v0.7.2 release

This commit is contained in:
Vehicle Researcher
2020-02-06 13:51:42 -08:00
parent 305037fc1a
commit 21f4245444
253 changed files with 49879 additions and 99426 deletions
+2 -2
View File
@@ -1,13 +1,13 @@
import jwt
import requests
from datetime import datetime, timedelta
from common.basedir import PERSIST
from selfdrive.version import version
class Api():
def __init__(self, dongle_id):
self.dongle_id = dongle_id
with open('/persist/comma/id_rsa') as f:
with open(PERSIST+'/comma/id_rsa') as f:
self.private_key = f.read()
def get(self, *args, **kwargs):