Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9cbc95d

Browse files
authored
Update one line docstrings to match convention
1 parent b904d6f commit 9cbc95d

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

lib/mpl_toolkits/mplot3d/axes3d.py

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -154,10 +154,7 @@ def convert_zunits(self, z):
154154

155155
def _process_unit_info(self, xdata=None, ydata=None, zdata=None,
156156
kwargs=None):
157-
"""
158-
Look for unit *kwargs* and update the axis instances as necessary
159-
160-
"""
157+
"""Look for unit *kwargs* and update the axis instances as necessary."""
161158
super()._process_unit_info(xdata=xdata, ydata=ydata, kwargs=kwargs)
162159

163160
if self.xaxis is None or self.yaxis is None or self.zaxis is None:
@@ -944,10 +941,7 @@ def set_proj_type(self, proj_type):
944941
}, proj_type=proj_type)
945942

946943
def get_proj(self):
947-
"""
948-
Create the projection matrix from the current viewing position.
949-
950-
"""
944+
"""Create the projection matrix from the current viewing position."""
951945
# chosen for similarity with the initial view before gh-8896
952946
pb_aspect = np.array([4, 4, 3]) / 3.5
953947

0 commit comments

Comments
 (0)