openpilot v0.7.2 release

This commit is contained in:
Vehicle Researcher
2020-02-03 16:15:37 -08:00
parent 2567a1902f
commit 082bf83e59
204 changed files with 49759 additions and 95794 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):