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 ae0b6f3 commit fdfb92bCopy full SHA for fdfb92b
lib/mpl_toolkits/axes_grid1/mpl_axes.py
@@ -34,8 +34,7 @@ def __init__(self, axes):
34
def __getitem__(self, k):
35
if isinstance(k, tuple):
36
r = SimpleChainedObjects(
37
- [super(Axes.AxisDict, self).__getitem__(self, k1)
38
- for k1 in k])
+ [super(Axes.AxisDict, self).__getitem__(k1) for k1 in k])
39
return r
40
elif isinstance(k, slice):
41
if k.start is None and k.stop is None and k.step is None:
0 commit comments