Skip to content

Commit

Permalink
Merge pull request #282 from yihuajack/yihuajack/ayka
Browse files Browse the repository at this point in the history
Fix syntax errors
  • Loading branch information
csev committed Feb 2, 2021
2 parents 7fc60b3 + d35a115 commit 8592685
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions code/roster/roster.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@

for entry in json_data:

name = entry[0];
title = entry[1];
name = entry[0]
title = entry[1]

print name, title

Expand Down
4 changes: 2 additions & 2 deletions code3/roster/roster.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@

for entry in json_data:

name = entry[0];
title = entry[1];
name = entry[0]
title = entry[1]

print((name, title))

Expand Down

0 comments on commit 8592685

Please sign in to comment.