From 4894ab00fcdf13a336a5492ab2a70533ef7b25c9 Mon Sep 17 00:00:00 2001 From: Trevor James Smith <10819524+Zeitsperre@users.noreply.github.com> Date: Thu, 30 Nov 2023 14:10:59 -0500 Subject: [PATCH] Apply suggestions from code review Co-authored-by: RondeauG <38501935+RondeauG@users.noreply.github.com> --- xdatasets/core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xdatasets/core.py b/xdatasets/core.py index 17ed985..716cc11 100644 --- a/xdatasets/core.py +++ b/xdatasets/core.py @@ -33,7 +33,7 @@ class Query: If a str, a dataset name, i.e.: era5_land_reanalysis. If a list, a list of dataset names, i.e.: [era5_single_levels_reanalysis, era5_land_reanalysis]. If a dictionary, it should map dataset names to their corresponding requested - content such as some desired variables. The list of available datasets in this library is coming soon! + content such as some desired variables. See the notes below for more details. The list of available datasets in this library is coming soon! space : dict-like A dictionary that maps spatial parameters with their corresponding value. More information on accepted key/value pairs : :py:meth:`~xdatasets.Query._resolve_space_params` @@ -230,7 +230,7 @@ def load_query( # Load data for each dataset dsets = [] for dataset_name in datasets_name: - # data = None + # data = None # FIXME: This is never used. kwargs = {} try: variables_name = self.datasets[dataset_name]["variables"]