From: Andrew M. Kuchling Date: Mon, 13 Aug 2001 14:55:17 +0000 (+0000) Subject: Remove empty __init__ (PyChecker) X-Git-Tag: v2.2a3~594 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8ea9227b1b73500eba8aad5869f6aa25355fbbbb;p=thirdparty%2FPython%2Fcpython.git Remove empty __init__ (PyChecker) --- diff --git a/Lib/formatter.py b/Lib/formatter.py index 47e2e659622a..0607526404ce 100644 --- a/Lib/formatter.py +++ b/Lib/formatter.py @@ -301,9 +301,6 @@ class NullWriter: class AbstractWriter(NullWriter): - def __init__(self): - pass - def new_alignment(self, align): print "new_alignment(%s)" % `align`