From 9654d97847aba7be033d10110c58b0fbfd590999 Mon Sep 17 00:00:00 2001 From: Zeitsperre <10819524+Zeitsperre@users.noreply.github.com> Date: Fri, 22 Dec 2023 14:29:41 -0500 Subject: [PATCH] address docstring formatting --- xhydro/testing/helpers.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xhydro/testing/helpers.py b/xhydro/testing/helpers.py index 287243df..7e662b9f 100644 --- a/xhydro/testing/helpers.py +++ b/xhydro/testing/helpers.py @@ -144,10 +144,10 @@ def load_registry(file: Optional[Union[str, Path]] = None) -> dict[str, str]: ----- There are two environment variables that can be used to control the behavior of this registry: - ``XHYDRO_DATA_DIR``: If this environment variable is set, it will be used as the base directory to store the data - files. The directory should be an absolute path (i.e., it should start with ``/``). Otherwise, - the default location will be used (based on ``platformdirs``, see :func:`pooch.os_cache`). + files. The directory should be an absolute path (i.e., it should start with ``/``). Otherwise, + the default location will be used (based on ``platformdirs``, see :func:`pooch.os_cache`). - ``XHYDRO_DATA_UPDATES``: If this environment variable is set, then the data files will be downloaded even if the - upstream hashes do not match. This is useful if you want to always use the latest version of the data files. + upstream hashes do not match. This is useful if you want to always use the latest version of the data files. Examples --------