(*args, data: DataParamType = None, **kwargs)
| 3330 | # Autogenerated by boilerplate.py. Do not edit as changes will be lost. |
| 3331 | @_copy_docstring_and_deprecators(Axes.contour) |
| 3332 | def contour(*args, data: DataParamType = None, **kwargs) -> QuadContourSet: |
| 3333 | __ret = gca().contour( |
| 3334 | *args, **({"data": data} if data is not None else {}), **kwargs |
| 3335 | ) |
| 3336 | if __ret._A is not None: # type: ignore[attr-defined] |
| 3337 | sci(__ret) |
| 3338 | return __ret |
| 3339 | |
| 3340 | |
| 3341 | # Autogenerated by boilerplate.py. Do not edit as changes will be lost. |