Skip to content

Commit

Permalink
Merge pull request #41 from jlumbroso/develop
Browse files Browse the repository at this point in the history
fix(devel): Minor typos fixed
  • Loading branch information
hfaran authored Aug 7, 2018
2 parents b96cd00 + e52b190 commit cbb46df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion piazza_api/piazza.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def get_user_classes(self):
classes = []
for rawc in raw_classes:
c = {k: rawc[k] for k in ['name', 'term']}
c['num'] = rawr.get('course_number', '')
c['num'] = rawc.get('course_number', '')
c['nid'] = rawc['id']
c['is_ta'] = rawc.get('is_ta', False)
classes.append(c)
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
requests
six==1.10.0
six

0 comments on commit cbb46df

Please sign in to comment.