From 3afe3ddaf8a2b9581f0faaf062b2debe2046241b Mon Sep 17 00:00:00 2001 From: thijsvl Date: Thu, 20 Jun 2024 15:11:48 +0200 Subject: [PATCH] Reduced length of single long comment line. --- stmtools/stm.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/stmtools/stm.py b/stmtools/stm.py index bdab52e..fa49bda 100644 --- a/stmtools/stm.py +++ b/stmtools/stm.py @@ -422,7 +422,9 @@ def reorder(self, xlabel="azimuth", ylabel="range", xscale=1.0, yscale=1.0): "time": self._obj.chunksizes["time"][0], } with warnings.catch_warnings(): - # Trying to supporess only [...]/lib/python3.12/site-packages/xarray/core/indexing.py:1620: PerformanceWarning: Slicing with an out-of-order index is generating [...] times more chunks + # Trying to supporess only + # [...]/lib/python3.12/site-packages/xarray/core/indexing.py:1620: PerformanceWarning: + # Slicing with an out-of-order index is generating [...] times more chunks # but unable to find the warning category. #warnings.simplefilter(action="ignore", category=pd.errors.PerformanceWarning) warnings.simplefilter(action="ignore")