no more pylint (#35418)

* no more pylint

* bump opendbc
This commit is contained in:
Adeeb Shihadeh
2025-06-01 16:34:22 -07:00
committed by GitHub
parent 1e702de434
commit ad58fea2f0
4 changed files with 2 additions and 4 deletions
-1
View File
@@ -199,7 +199,6 @@ class SwagLogger(logging.Logger):
co = f.f_code
filename = os.path.normcase(co.co_filename)
# TODO: is this pylint exception correct?
if filename == _srcfile:
f = f.f_back
continue
+1 -1
Submodule panda updated: 4f227f88c8...c19692245c
-1
View File
@@ -96,7 +96,6 @@ class ManagerProcess(ABC):
try:
fn = WATCHDOG_FN + str(self.proc.pid)
with open(fn, "rb") as f:
# TODO: why can't pylint find struct.unpack?
self.last_watchdog_time = struct.unpack('Q', f.read())[0]
except Exception:
pass