Opened 10 years ago

Closed 10 years ago

#23126 closed Cleanup/optimization (invalid)

Remove ignore E128 from setup.cfg

Reported by: tomc Owned by: nobody
Component: Core (URLs) Version: dev
Severity: Normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

I think the only reason to have E128 ignored was to appease flake8 for urlpatterns:

urlpatterns = patterns('',
    ...
)

Since patterns() is deprecated now, maybe we should stop ignoring E128 unless there's another reason I'm not aware of.

Change History (1)

comment:1 by tomc, 10 years ago

Resolution: invalid
Status: newclosed

Or perhaps nevermind, seems like this is used everywhere.

Note: See TracTickets for help on using tickets.
Back to Top