Commit a132d20e authored by Georg Brandl's avatar Georg Brandl

Fix typo in function name.

parent 820b8cec
...@@ -514,7 +514,7 @@ expect a function argument. ...@@ -514,7 +514,7 @@ expect a function argument.
return resolve_attr(obj, attr) return resolve_attr(obj, attr)
else: else:
def g(obj): def g(obj):
return tuple(resolve_att(obj, attr) for attr in items) return tuple(resolve_attr(obj, attr) for attr in items)
return g return g
def resolve_attr(obj, attr): def resolve_attr(obj, attr):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment