From c2891b26c7a36971747d860daf08c8e0b618e79d Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Tue, 11 Aug 2009 23:23:34 +0100 Subject: [PATCH] appease pylint --- terminatorlib/borg.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/terminatorlib/borg.py b/terminatorlib/borg.py index 622c9af6..6b65cd53 100755 --- a/terminatorlib/borg.py +++ b/terminatorlib/borg.py @@ -4,8 +4,11 @@ """borg.py - We are the borg. Resistance is futile. http://code.activestate.com/recipes/66531/""" +# pylint: disable-msg=R0903 class Borg: + """Definition of a class that can never be duplicated""" __shared_state = {} def __init__(self): - self.__dict__ = self.__shared_state + self.__dict__ = self.__shared_state +# vim: set expandtab ts=4 sw=4: