Skip to content

Commit 06d3b66

Browse files
Flake8 fixes.
1 parent e4ce905 commit 06d3b66

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

matplotview/__init__.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,14 @@ def view(
6464
Returns
6565
-------
6666
axes
67-
The modified `~.axes.Axes` instance which is now a view. The modification occurs in-place.
67+
The modified `~.axes.Axes` instance which is now a view.
68+
The modification occurs in-place.
6869
6970
See Also
7071
--------
7172
matplotview.stop_viewing: Delete or stop an already constructed view.
72-
matplotview.inset_zoom_axes: Convenience method for creating inset axes that are views of the parent axes.
73+
matplotview.inset_zoom_axes: Convenience method for creating inset axes
74+
that are views of the parent axes.
7375
"""
7476
view_obj = view_wrapper(type(axes)).from_axes(axes, render_depth)
7577
view_obj.view_specifications[axes_to_view] = ViewSpecification(
@@ -100,7 +102,8 @@ def stop_viewing(view: Axes, axes_of_viewing: Axes) -> Axes:
100102
Raises
101103
------
102104
AttributeError
103-
If the provided `axes_of_viewing` is not actually being viewed by the specified view.
105+
If the provided `axes_of_viewing` is not actually being
106+
viewed by the specified view.
104107
105108
See Also
106109
--------

0 commit comments

Comments
 (0)