Skip to content
This repository has been archived by the owner on Jan 26, 2021. It is now read-only.

Commit

Permalink
upgrade flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
satya7289 committed Jul 20, 2020
1 parent af2c3c7 commit faa6828
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion requirements/dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Sphinx==1.6.5
coverage==4.4.1
django-nose==1.4.5
flake8==2.4.1
flake8==3.8.3
sphinx-rtd-theme==0.2.4
pylint==1.9.0
pytest==3.5.1
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[flake8]
ignore = F403
ignore = F403, F405
exclude = .git,docs/*,systers_portal/manage.py,wsgi.py,migrations
max-line-length = 100
1 change: 1 addition & 0 deletions systers_portal/community/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ def save_model(self, request, obj, form, change):
form.cleaned_data['members'] = members
super(CommunityAdmin, self).save_model(request, obj, form, change)


admin.site.register(RequestCommunity)
admin.site.register(Community, CommunityAdmin)
admin.site.register(CommunityPage)
4 changes: 2 additions & 2 deletions systers_portal/meetup/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@
AddSupportRequestCommentView.as_view(),
name="add_support_request_comment"),
url(r'^(?P<meetup_slug>[\w-]+)/support_request/(?P<pk>\d+)/edit_comment/'
'(?P<comment_pk>\d+)/$',
r'(?P<comment_pk>\d+)/$',
EditSupportRequestCommentView.as_view(),
name="edit_support_request_comment"),
url(r'^(?P<meetup_slug>[\w-]+)/support_request/(?P<pk>\d+)/delete_comment/'
'(?P<comment_pk>\d+)/$',
r'(?P<comment_pk>\d+)/$',
DeleteSupportRequestCommentView.as_view(),
name="delete_support_request_comment"),
url(r'^(?P<slug>[\w-]+)/$', MeetupView.as_view(), name="view_meetup"),
Expand Down

0 comments on commit faa6828

Please sign in to comment.