**Describe the bug** The gallery example https://pvlib-python.readthedocs.io/en/stable/gallery/system-models/oedi_9068.html In https://github.com/pvlib/pvlib-python/blob/main/docs/examples/system-models/oedi_9068.py Here at this call: ``` psm3, psm3_metadata = pvlib.iotools.get_nsrdb_psm4_conus(latitude, longitude, api_key, email, year=2019, interval=5, parameters=keys, map_variables=True, leap_day=True) ``` It produces: `TypeError: get_nsrdb_psm4_conus() got an unexpected keyword argument 'interval'` **To Reproduce** Documentation of `get_nsrdb_psm4_conus` is at https://pvlib-python.readthedocs.io/en/stable/reference/generated/pvlib.iotools.get_nsrdb_psm4_conus.html No mention of `interval` parameter. And example is at https://pvlib-python.readthedocs.io/en/stable/gallery/system-models/oedi_9068.html **Expected behavior** Successful execution, or failure due to invalid credentials. **Screenshots** N/A **Versions:** - ``pvlib.__version__``: 0.15.2 **Additional context** I couldn't trace back if there ever was that parameter to the function. The function seems to be added in #2378.
Describe the bug
The gallery example https://pvlib-python.readthedocs.io/en/stable/gallery/system-models/oedi_9068.html
In https://github.com/pvlib/pvlib-python/blob/main/docs/examples/system-models/oedi_9068.py
Here at this call:
It produces:
TypeError: get_nsrdb_psm4_conus() got an unexpected keyword argument 'interval'To Reproduce
Documentation of
get_nsrdb_psm4_conusis at https://pvlib-python.readthedocs.io/en/stable/reference/generated/pvlib.iotools.get_nsrdb_psm4_conus.htmlNo mention of
intervalparameter.And example is at https://pvlib-python.readthedocs.io/en/stable/gallery/system-models/oedi_9068.html
Expected behavior
Successful execution, or failure due to invalid credentials.
Screenshots
N/A
Versions:
pvlib.__version__: 0.15.2Additional context
I couldn't trace back if there ever was that parameter to the function. The function seems to be added in #2378.