Re: [code-quality] Suspected bug on code

May 7, 2019
4:29 p.m.
Is there any reason flakes8_tuple should report the last line of this code below
class ReferralsView(FormView): # !qa: D101 schema = ReferralsSchema() buttons = (Button(name='send_invites', title ='Send Invites'), )
Looks like a bug to me, their bug tracker is at https://github.com/ar4s/flake8_tuple. Though this code looks pretty weird and not how I'd format it. Maybe something like this? class ReferralsView(FormView): # !qa: D101 schema = ReferralsSchema() buttons = ( Button( name='send_invites', title='Send Invites', ), ) Anthony
2105
Age (days ago)
2105
Last active (days ago)
0 comments
1 participants
participants (1)
-
Anthony Sottile