minor PEP8 cleanup (" -> ')

This commit is contained in:
Overwatch 2014-08-19 16:29:56 +02:00
parent 6416b66f6e
commit 61fb3b1044
18 changed files with 456 additions and 456 deletions

View file

@ -23,7 +23,7 @@ cdef class CommonMethod:
return return_values
def __repr__(self):
return "CommonMethod(name=%s)" %(self.method_name)
return 'CommonMethod(name=%s)' %(self.method_name)
@property
def _name(self):