mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-18 20:03:53 +08:00
cleanup unused pip packages (#22947)
* cleanup unused pip packages
* fix linter
old-commit-hash: f1c77f97b9
This commit is contained in:
4
Pipfile
4
Pipfile
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:65c87406e2a0cfb5d50c65db00237451005aaf83380e6003e7bc62a5264cc90a
|
||||
size 2046
|
||||
oid sha256:6aefb46314552707e165cf9bde6dbceb54c6176bc50b91036ed685d84cdb3265
|
||||
size 1196
|
||||
|
||||
4
Pipfile.lock
generated
4
Pipfile.lock
generated
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f1b6a05920d097962e521213ab8087d8c2f685f7ec5fd7c4ddaa1ee1abf898c2
|
||||
size 267184
|
||||
oid sha256:480ddcab4c5a1b12e6f9981381addba80ce3c24c01a577d849dfa995b737e66a
|
||||
size 143544
|
||||
|
||||
@@ -12,7 +12,7 @@ def get_url(route_name, segment_num, log_type="rlog"):
|
||||
return BASE_URL + "%s/%s/%s.%s" % (route_name.replace("|", "/"), segment_num, log_type, ext)
|
||||
|
||||
def upload_file(path, name):
|
||||
from azure.storage.blob import BlockBlobService
|
||||
from azure.storage.blob import BlockBlobService # pylint: disable=import-error
|
||||
|
||||
sas_token = None
|
||||
if os.path.isfile(TOKEN_PATH):
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#!/usr/bin/env python3
|
||||
import sys
|
||||
import subprocess
|
||||
from azure.storage.blob import BlockBlobService
|
||||
from azure.storage.blob import BlockBlobService # pylint: disable=import-error
|
||||
|
||||
from selfdrive.test.test_routes import routes as test_car_models_routes
|
||||
from selfdrive.test.process_replay.test_processes import original_segments as replay_segments
|
||||
|
||||
@@ -6,10 +6,10 @@ import struct
|
||||
import subprocess
|
||||
import tempfile
|
||||
import threading
|
||||
from enum import IntEnum
|
||||
from functools import wraps
|
||||
|
||||
import numpy as np
|
||||
from aenum import Enum
|
||||
from lru import LRU
|
||||
|
||||
import _io
|
||||
@@ -41,7 +41,7 @@ class DoNothingContextManager:
|
||||
pass
|
||||
|
||||
|
||||
class FrameType(Enum):
|
||||
class FrameType(IntEnum):
|
||||
raw = 1
|
||||
h265_stream = 2
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
# Python library to control Zookeeper
|
||||
|
||||
import ft4222
|
||||
import ft4222.I2CMaster
|
||||
import ft4222 # pylint: disable=import-error
|
||||
import ft4222.I2CMaster # pylint: disable=import-error
|
||||
|
||||
DEBUG = False
|
||||
|
||||
|
||||
Reference in New Issue
Block a user