Commit 9afdabff authored by Guido van Rossum's avatar Guido van Rossum

Add missing close parenthesis.

parent 74faed29
......@@ -964,7 +964,7 @@ class Canvas(Widget):
self._w, 'canvasy', screeny, gridspacing))
def coords(self, *args):
return map(self.tk.getdouble,
self.tk.splitlist(self._do('coords', args))
self.tk.splitlist(self._do('coords', args)))
def _create(self, itemType, args, kw): # Args: (val, val, ..., cnf={})
args = _flatten(args)
cnf = args[-1]
......
......@@ -964,7 +964,7 @@ class Canvas(Widget):
self._w, 'canvasy', screeny, gridspacing))
def coords(self, *args):
return map(self.tk.getdouble,
self.tk.splitlist(self._do('coords', args))
self.tk.splitlist(self._do('coords', args)))
def _create(self, itemType, args, kw): # Args: (val, val, ..., cnf={})
args = _flatten(args)
cnf = args[-1]
......
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