-
Notifications
You must be signed in to change notification settings - Fork 9.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#34331 #34371
#34331 #34371
Conversation
tools/op.sh lint --fast | ||
echo "" | ||
#!/bin/sh | ||
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-commit' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks').\n"; exit 2; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
revert this
selfdrive/car/cruise.py
Outdated
@@ -2,7 +2,7 @@ | |||
|
|||
from cereal import car | |||
from openpilot.common.conversions import Conversions as CV | |||
from openpilot.common.numpy_fast import clip | |||
import numpy as np |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
third party imports should be on top with the std lib
@@ -1,5 +1,5 @@ | |||
from cereal import log | |||
from openpilot.common.numpy_fast import clip | |||
import numpy as np |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same here
@@ -1,7 +1,7 @@ | |||
#!/usr/bin/env python3 | |||
import math | |||
import numpy as np | |||
from openpilot.common.numpy_fast import clip, interp | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove the line
No description provided.