Skip to content

Commit

Permalink
refactor(eighth): refactor comprehension
Browse files Browse the repository at this point in the history
  • Loading branch information
theo-o committed Oct 13, 2019
1 parent 960078b commit ec65c46
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def handle(self, *args, **kwargs):

with open(filename) as f:
contents = csv.DictReader(f)
data = [row for row in contents]
data = list(contents)

counselors = get_user_model().objects.filter(user_type="counselor")

Expand Down

0 comments on commit ec65c46

Please sign in to comment.