cleanup unused pip packages (#22947)

* cleanup unused pip packages

* fix linter
old-commit-hash: f1c77f97b9
commatwo_master
Willem Melching 3 years ago committed by GitHub
parent f076987942
commit fd3140fd6f
  1. 4
      Pipfile
  2. 4
      Pipfile.lock
  3. 2
      selfdrive/test/openpilotci.py
  4. 2
      selfdrive/test/update_ci_routes.py
  5. 4
      tools/lib/framereader.py
  6. 4
      tools/zookeeper/__init__.py

@ -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

@ -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

Loading…
Cancel
Save