From c2f87f736cad6e1e5248f0f1fbffc91cf78d92d2 Mon Sep 17 00:00:00 2001 From: Randall Degges Date: Tue, 17 Aug 2010 16:59:34 +0800 Subject: [PATCH] Adding some more PEP-8. All lines should be at most 79 characters in length. --- twython/core.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/twython/core.py b/twython/core.py index 496142d..61cb00e 100644 --- a/twython/core.py +++ b/twython/core.py @@ -61,7 +61,9 @@ class AuthError(TwythonError): class setup: - def __init__(self, username = None, password = None, headers = None, proxy = None, version = 1): + + def __init__(self, username=None, password=None, headers=None, proxy=None, + version=1): """setup(username = None, password = None, proxy = None, headers = None) Instantiates an instance of Twython. Takes optional parameters for authentication and such (see below).