Skip to content

Commit e5b892f

Browse files
committed
edit readme, change indent of name error
1 parent 530ba4f commit e5b892f

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Water quality data are available from:
5353
- [Samples](https://waterdata.usgs.gov/download-samples/#dataProfile=site) - Discrete USGS water quality data only
5454
- [Water Quality Portal](https://www.waterqualitydata.us/) - Discrete water quality data from USGS and EPA. Older data are available in the legacy WQX version 2 format; all data are available in the beta WQX3.0 format.
5555

56-
To access the full functionality available from NWIS web services, nwis.get record appends any additional kwargs into the REST request. For example:
56+
To access the full functionality available from NWIS web services, nwis.get record appends any additional kwargs into the REST request. For example, this function call:
5757
```python
5858
nwis.get_record(sites='03339000', service='dv', start='2017-12-31', parameterCd='00060')
5959
```
@@ -97,9 +97,11 @@ Any help in testing, development, documentation and other tasks is welcome.
9797
For more details, see the file [CONTRIBUTING.md](CONTRIBUTING.md).
9898

9999

100-
## Package Support
101-
The Water Mission Area of the USGS supports the development and maintenance of `dataretrieval`
102-
and most likely further into the future.
100+
## Need help?
101+
102+
The Water Mission Area of the USGS supports the development and maintenance of `dataretrieval`. Any questions can be directed to the Computational Tools team at
103+
104+
103105
Resources are available primarily for maintenance and responding to user questions.
104106
Priorities on the development of new features are determined by the `dataretrieval` development team.
105107

dataretrieval/nwis.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,9 +138,9 @@ def get_qwdata(
138138
in the waterdata module.
139139
140140
"""
141-
raise NameError(
142-
"`nwis.get_qwdata` has been replaced with `waterdata.get_samples()`."
143-
)
141+
raise NameError(
142+
"`nwis.get_qwdata` has been replaced with `waterdata.get_samples()`."
143+
)
144144

145145

146146
def get_discharge_measurements(

tests/waterdata_test.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55

66
from dataretrieval.waterdata import (
77
_check_profiles,
8-
get_samples
8+
get_samples,
9+
_SERVICES,
10+
_PROFILES
911
)
1012

1113
def mock_request(requests_mock, request_url, file_path):

0 commit comments

Comments
 (0)