Skip to content

Commit f26ea29

Browse files
cgohlkeWeatherGod
authored andcommitted
Fix TypeError: set_autoscalez_on() takes exactly 2 arguments (3 given)
1 parent d23f721 commit f26ea29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/mpl_toolkits/mplot3d/axes3d.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ def set_autoscale_on(self, b) :
251251
This function was added, but not tested. Please report any bugs.
252252
"""
253253
Axes.set_autoscale_on(self, b)
254-
self.set_autoscalez_on(self, b)
254+
self.set_autoscalez_on(b)
255255

256256
def set_autoscalez_on(self, b) :
257257
"""

0 commit comments

Comments
 (0)