From a7f2b025a9de06ec6ca917e7cd60dafdc18041da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Davorin=20=C5=A0ego?= Date: Thu, 30 Jul 2015 16:00:31 +0200 Subject: [PATCH] Delete null_handler.py --- common/lib/xmodule/xmodule/util/null_handler.py | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 common/lib/xmodule/xmodule/util/null_handler.py diff --git a/common/lib/xmodule/xmodule/util/null_handler.py b/common/lib/xmodule/xmodule/util/null_handler.py deleted file mode 100644 index db4f989d11..0000000000 --- a/common/lib/xmodule/xmodule/util/null_handler.py +++ /dev/null @@ -1,11 +0,0 @@ -# pylint: disable=missing-docstring - - -class NullHandler(object): - """ - Responds to an any method call. - """ - def __getattr__(self, name): - def method(*args, **kwargs): # pylint: disable=unused-argument - pass - return method