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

Add doctests for the validate_output_table_type function #3098

Merged
merged 3 commits into from
Mar 13, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
update
  • Loading branch information
seisman committed Mar 11, 2024
commit 2e9811174c8491fce0a11958fab2dda9ea304e1b
4 changes: 2 additions & 2 deletions pygmt/helpers/validators.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ def validate_output_table_type(
Desired output type of a tabular data. Valid values are ``"pandas"``,
seisman marked this conversation as resolved.
Show resolved Hide resolved
``"numpy"`` and ``"file"``.
outfile
The file name for saving the output tabular data. If specified, ``output_type``
will be forced to be ``"file"``.
File name for saving the result data. Required if ``output_type`` is ``"file"``.
If specified, ``output_type`` will be forced to be ``"file"``.

Returns
-------
Expand Down
Loading