mirror of
https://github.com/home-assistant/core.git
synced 2025-07-30 10:48:01 +02:00
Have pylint warn when user visible log messages do not start with capital letter or end with a period (#48064)
Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
This commit is contained in:
@ -336,7 +336,7 @@ class TensorFlowImageProcessor(ImageProcessingEntity):
|
||||
"""Process the image."""
|
||||
model = self.hass.data[DOMAIN][CONF_MODEL]
|
||||
if not model:
|
||||
_LOGGER.debug("Model not yet ready.")
|
||||
_LOGGER.debug("Model not yet ready")
|
||||
return
|
||||
|
||||
start = time.perf_counter()
|
||||
|
Reference in New Issue
Block a user