Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MNT: Update flake8-docstrings config #278

Merged
merged 1 commit into from
Aug 27, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import-order-style = google
inline-quotes = single
multiline-quotes = double
rst-roles = class, data, func, meth, mod
docstring-convention = numpy

[tool:pytest]
norecursedirs = build docs
Expand Down
2 changes: 1 addition & 1 deletion siphon/simplewebservice/acis.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,6 @@ def acis_request(method, params):


class AcisApiException(Exception):
"""This class handles exceptions raised by the acis_request function."""
"""Handle exceptions raised by the acis_request function."""

pass
2 changes: 1 addition & 1 deletion siphon/simplewebservice/igra2.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def request_data(cls, time, site_id, derived=False):
def _get_data(self):
"""Process the IGRA2 text file for observations at site_id matching time.

Return:
Returns
-------
:class: `pandas.DataFrame` containing the body data.
:class: `pandas.DataFrame` containing the header data.
Expand Down