[DOCS] Fix parameter name mismatches in docstrings#11944
Open
eeshsaxena wants to merge 1 commit into
Open
Conversation
- render/util.py: `kwargs_list` -> `kwarg_list` in substitute_none_for_missing - experimental/metric_repository/batch_inspector.py: `metrics_list` -> `metric_list` in compute_metric_list_run - experimental/metric_repository/metric_list_metric_retriever.py: `metrics_list` -> `metric_list` in _calculate_table_metrics
👷 Deploy request for niobium-lead-7998 pending review.Visit the deploys page to approve it
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes three docstrings where the documented parameter name does not match the actual function signature:
great_expectations/render/util.pysubstitute_none_for_missingkwargs_listkwarg_listgreat_expectations/experimental/metric_repository/batch_inspector.pycompute_metric_list_runmetrics_listmetric_listgreat_expectations/experimental/metric_repository/metric_list_metric_retriever.py_calculate_table_metricsmetrics_listmetric_listThe sibling methods in
metric_list_metric_retriever.pythat genuinely takemetrics_listare left unchanged.Doc-only change; no behavior modified.