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