Add missing close parenthesis.

This commit is contained in:
Guido van Rossum 1996-07-30 20:16:21 +00:00
parent 74faed299f
commit 9afdabffa9
2 changed files with 2 additions and 2 deletions

View File

@ -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]

View File

@ -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]