From 9fff3a13a57adaf512d48a27d60fc5dee9a07b98 Mon Sep 17 00:00:00 2001 From: Allen Porter Date: Sun, 1 Sep 2024 21:49:38 -0700 Subject: [PATCH] Clarify comment in google photos upload service (#125042) --- homeassistant/components/google_photos/services.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/google_photos/services.py b/homeassistant/components/google_photos/services.py index a895f333962..77015d5c700 100644 --- a/homeassistant/components/google_photos/services.py +++ b/homeassistant/components/google_photos/services.py @@ -42,7 +42,7 @@ UPLOAD_SERVICE_SCHEMA = vol.Schema( def _read_file_contents( hass: HomeAssistant, filenames: list[str] ) -> list[tuple[str, bytes]]: - """Read the mime type and contents from each filen.""" + """Return the mime types and file contents for each file.""" results = [] for filename in filenames: if not hass.config.is_allowed_path(filename):