Re: [Maya-Python] conforming lines to 80 characters limits

2017-02-26 Thread Alok Gandhi
I agree with Justin. Personally, I would slightly change this to (which is PEP8 compliant): self.uiSetupNormalSmooth = cmds.radioButton( label='Geometry normal', align='right', onCommand=lambda*args: self.setupCallback( "uiSetupNormalCol", True, ),) -- You

[Maya-Python] conforming lines to 80 characters limits

2017-02-26 Thread likage
Hi all, I am trying to conform my code to fit into length width of 80 characters, pep8 style Suppose if I have a code like this: class something(): def __init__(self): ... self.uiSetupNormalSmooth = cmds.radioButton(label='Geometry normal',