From 208af75e1dc775b7ce65df584bc22e991141cc9e Mon Sep 17 00:00:00 2001 From: Chris Gerth Date: Sun, 22 Sep 2024 21:03:51 -0500 Subject: [PATCH] wpi moms choose wpiformat --- photon-lib/py/photonlibpy/photonCamera.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/photon-lib/py/photonlibpy/photonCamera.py b/photon-lib/py/photonlibpy/photonCamera.py index eb2676d4cc..b5bb659e88 100644 --- a/photon-lib/py/photonlibpy/photonCamera.py +++ b/photon-lib/py/photonlibpy/photonCamera.py @@ -229,7 +229,10 @@ def _versionCheck(self) -> None: remoteUUID = self._rawBytesEntry.getTopic().getProperty("message_uuid") if remoteUUID is None or len(remoteUUID) == 0: - wpilib.reportWarning(f"PhotonVision coprocessor at path {self._path} has not reported a message interface UUID - is your coprocessor's camera started?", True) + wpilib.reportWarning( + f"PhotonVision coprocessor at path {self._path} has not reported a message interface UUID - is your coprocessor's camera started?", + True, + ) elif localUUID != remoteUUID: # Verified version mismatch