Skip to content

Commit

Permalink
Fixed E741 ambiguous variable name flake8 error.
Browse files Browse the repository at this point in the history
  • Loading branch information
carltongibson committed May 14, 2020
1 parent 9e9bb5f commit 1ebb03a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_filters/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ def get_lookup_choices(self):
field = get_model_field(self.model, self.field_name)
lookups = field.get_lookups()

return [self.normalize_lookup(l) for l in lookups]
return [self.normalize_lookup(lookup) for lookup in lookups]

@property
def field(self):
Expand Down

0 comments on commit 1ebb03a

Please sign in to comment.