Skip to content

Commit

Permalink
Reduced length of single long comment line.
Browse files Browse the repository at this point in the history
  • Loading branch information
thijsvl committed Jun 20, 2024
1 parent 824799c commit 3afe3dd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion stmtools/stm.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 3afe3dd

Please sign in to comment.