From 9cc0941726b71e427127c7e742713778b2d3b2b5 Mon Sep 17 00:00:00 2001 From: Stephan Finkensieper Date: Wed, 6 May 2020 12:23:44 +0200 Subject: [PATCH] Update docstring --- satpy/readers/hrit_jma.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/satpy/readers/hrit_jma.py b/satpy/readers/hrit_jma.py index d73a803455..2065dbd6bb 100644 --- a/satpy/readers/hrit_jma.py +++ b/satpy/readers/hrit_jma.py @@ -319,8 +319,8 @@ def _get_acq_time(self): times_sparse = [float(s.split(':=')[1]) for s in splits[1::2]] if self.platform == HIMAWARI8: - # Only 3 timestamps, and only the first and last are usable - # (the second equals the third). + # Only a couple of timestamps in the header, and only the first + # and last are usable (duplicates inbetween). lines_sparse = [lines_sparse[0], lines_sparse[-1]] times_sparse = [times_sparse[0], times_sparse[-1]]