Skip to content

Commit

Permalink
Fix pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
rgaiacs committed Oct 18, 2018
1 parent 52d8cb4 commit db55e03
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lowfat/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def __init__(self, *args, **kwargs):
class FundForm(GarlicForm):
class Meta:
model = Fund
exclude = [
exclude = [ # pylint: disable=modelform-uses-exclude
"status",
"ad_status",
"budget_approved",
Expand Down Expand Up @@ -784,7 +784,7 @@ def __init__(self, *args, user=None, **kwargs):
class BlogReviewForm(GarlicForm):
class Meta:
model = Blog
exclude = [
exclude = [ # pylint: disable=modelform-uses-exclude
"fund",
"author",
"coauthor",
Expand Down
2 changes: 1 addition & 1 deletion lowfat/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

from constance import config

from .management.commands import loadoldfunds as loadoldfunds
from .management.commands import loadoldfunds
from .models import *
from .forms import *
from .mail import *
Expand Down

0 comments on commit db55e03

Please sign in to comment.