From 0443ac0a9961ac4fa909bd0a5a83d8b5ed808d58 Mon Sep 17 00:00:00 2001 From: thorbjoernl <51087536+thorbjoernl@users.noreply.github.com> Date: Fri, 3 Jan 2025 13:56:59 +0100 Subject: [PATCH] Fix exception in CI --- src/pyaro/timeseries/Filter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pyaro/timeseries/Filter.py b/src/pyaro/timeseries/Filter.py index c26a1c0..b7d4c59 100644 --- a/src/pyaro/timeseries/Filter.py +++ b/src/pyaro/timeseries/Filter.py @@ -1254,7 +1254,7 @@ def __init__( ) if not self._topo.exists(): - raise FileNotFoundError( + logger.warning( f"Provided location for topography data ({self._topo}) does not exist. It should be either a .nc file, or a folder with several .nc files and a metadata.json file." )