Skip to content

Commit

Permalink
minor readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
edaniszewski committed Mar 2, 2018
1 parent 151ba2b commit c961a8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def main(output="default"):
'''Entrypoint to the example script which prints out the
value in the 'output' variable.
'''
print output
print(output)


if __name__ == "__main__":
Expand Down Expand Up @@ -51,7 +51,7 @@ def main(output='default'):
"""Entrypoint to the example script which prints out the
value in the 'output' variable.
"""
print output
print(output)


if __name__ == '__main__':
Expand Down

0 comments on commit c961a8f

Please sign in to comment.