From 8b9c676504658863b984d9866cd95a7806204523 Mon Sep 17 00:00:00 2001 From: Andrew Fasano Date: Tue, 19 Dec 2023 11:17:18 -0500 Subject: [PATCH] PyPANDA bugfix: fix typo for shim when plog reader is unavilable --- panda/python/core/pandare/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panda/python/core/pandare/__init__.py b/panda/python/core/pandare/__init__.py index 3dfbd4a171b..bef65cbc94b 100644 --- a/panda/python/core/pandare/__init__.py +++ b/panda/python/core/pandare/__init__.py @@ -21,7 +21,7 @@ from .plog_reader import PLogReader except ImportError: # plog reader isn't widely used - let's make this optional - PlogReader = None + PLogReader = None __all__ = ['Panda', 'PLogReader', 'Callbacks', 'PyPlugin']