Skip to content

Commit a9e3e28

Browse files
committed
Revert to previous name for _process_wrapper func
1 parent 3d3a53b commit a9e3e28

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

proplot/axes/plot.py

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -4308,7 +4308,7 @@ def wrapper(self, *args, **kwargs):
43084308
return wrapper
43094309

43104310

4311-
def _process_extras(driver):
4311+
def _process_wrapper(driver):
43124312
"""
43134313
Generate generic wrapper decorator and dynamically modify the docstring
43144314
to list methods wrapped by this function. Also set `__doc__` to ``None`` so
@@ -4412,28 +4412,28 @@ def _concatenate_docstrings(func):
44124412
# Generate decorators and fill wrapper function docstrings. Each wrapper
44134413
# function should call function(self, ...) somewhere.
44144414
# Hidden wrapper functions providing only internal functionality
4415-
_hist_extras = _process_extras(_hist_apply)
4416-
_parametric_extras = _process_extras(_parametric_apply)
4417-
_stem_extras = _process_extras(_stem_apply)
4418-
_plot_extras = _process_extras(_plot_apply)
4415+
_hist_extras = _process_wrapper(_hist_apply)
4416+
_stem_extras = _process_wrapper(_stem_apply)
4417+
_plot_extras = _process_wrapper(_plot_apply)
4418+
_parametric_extras = _process_wrapper(_parametric_apply)
44194419
# Public wrapper functions providing important functionality
4420-
_apply_cmap = _process_extras(apply_cmap)
4421-
_apply_cycle = _process_extras(apply_cycle)
4422-
_bar_extras = _process_extras(bar_extras)
4423-
_barh_extras = _process_extras(barh_extras)
4424-
_boxplot_extras = _process_extras(boxplot_extras)
4425-
_default_latlon = _process_extras(default_latlon)
4426-
_default_transform = _process_extras(default_transform)
4427-
_fill_between_extras = _process_extras(fill_between_extras)
4428-
_fill_betweenx_extras = _process_extras(fill_betweenx_extras)
4429-
_hlines_extras = _process_extras(hlines_extras)
4430-
_indicate_error = _process_extras(indicate_error)
4431-
_scatter_extras = _process_extras(scatter_extras)
4432-
_standardize_1d = _process_extras(standardize_1d)
4433-
_standardize_2d = _process_extras(standardize_2d)
4434-
_text_extras = _process_extras(text_extras)
4435-
_violinplot_extras = _process_extras(violinplot_extras)
4436-
_vlines_extras = _process_extras(vlines_extras)
4420+
_apply_cmap = _process_wrapper(apply_cmap)
4421+
_apply_cycle = _process_wrapper(apply_cycle)
4422+
_bar_extras = _process_wrapper(bar_extras)
4423+
_barh_extras = _process_wrapper(barh_extras)
4424+
_boxplot_extras = _process_wrapper(boxplot_extras)
4425+
_default_latlon = _process_wrapper(default_latlon)
4426+
_default_transform = _process_wrapper(default_transform)
4427+
_fill_between_extras = _process_wrapper(fill_between_extras)
4428+
_fill_betweenx_extras = _process_wrapper(fill_betweenx_extras)
4429+
_hlines_extras = _process_wrapper(hlines_extras)
4430+
_indicate_error = _process_wrapper(indicate_error)
4431+
_scatter_extras = _process_wrapper(scatter_extras)
4432+
_standardize_1d = _process_wrapper(standardize_1d)
4433+
_standardize_2d = _process_wrapper(standardize_2d)
4434+
_text_extras = _process_wrapper(text_extras)
4435+
_violinplot_extras = _process_wrapper(violinplot_extras)
4436+
_vlines_extras = _process_wrapper(vlines_extras)
44374437

44384438
# Deprecated
44394439
(

0 commit comments

Comments
 (0)