PEP8 Edits: Mostly cosmetic tweaks. Removed tabs, breaking lines longer than 80 chars, etc... #52

Merged
decause merged 4 commits from master into master 2011-12-17 16:35:00 -08:00
Showing only changes of commit cf5b382d55 - Show all commits

View file

@ -1,13 +1,14 @@
from twython import Twython from twython import Twython
""" """
Note: for any method that'll require you to be authenticated (updating things, etc) Note: for any method that'll require you to be authenticated (updating
you'll need to go through the OAuth authentication ritual. See the example things, etc)
Django application that's included with this package for more information. you'll need to go through the OAuth authentication ritual. See the example
Django application that's included with this package for more information.
""" """
twitter = Twython() twitter = Twython()
# OAuth ritual... # OAuth ritual...
twitter.updateStatus(status = "See how easy this was?") twitter.updateStatus(status="See how easy this was?")