8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea9af54 commit 04bc9afCopy full SHA for 04bc9af
lib/mpl_toolkits/mplot3d/axis3d.py
@@ -178,13 +178,11 @@ def get_rotate_label(self, text):
178
return len(text) > 4
179
180
def _get_coord_info(self, renderer):
181
- mins, maxs = np.array(
182
- [
183
- self.axes.get_xbound(),
184
- self.axes.get_ybound(),
185
- self.axes.get_zbound(),
186
- ]
187
- ).T
+ mins, maxs = np.array([
+ self.axes.get_xbound(),
+ self.axes.get_ybound(),
+ self.axes.get_zbound(),
+ ]).T
188
189
# Get the mean value for each bound:
190
centers = 0.5 * (maxs + mins)
0 commit comments