Code review comment for lp:~trb143/openlp/bitsandbobs

Revision history for this message
Raoul Snyman (raoul-snyman) wrote :

Also, there are various other bits and pieces of coding-style fixes.

No spaces between parent, = and None

 def __init__(self, parent = None):

Should be:

 def __init__(self, parent=None):

Even if it's not your code, please fix it when you see it.

« Back to merge proposal