From 742b0ad62b5de5c05b5e5060a75237d91006c89c Mon Sep 17 00:00:00 2001 From: Christophe Benz Date: Sun, 11 Jul 2010 02:52:12 +0200 Subject: [PATCH] remove unnecessary comments --- weboob/tools/application/base.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/weboob/tools/application/base.py b/weboob/tools/application/base.py index 2bce552f..e3de6d4a 100644 --- a/weboob/tools/application/base.py +++ b/weboob/tools/application/base.py @@ -98,8 +98,6 @@ class BaseApplication(object): @return a IStorage object """ if klass is None: - # load StandardStorage only here because some applications don't - # want to depend on yaml and do not use this function from weboob.tools.storage import StandardStorage klass = StandardStorage @@ -122,10 +120,6 @@ class BaseApplication(object): @return a IConfig object """ if klass is None: - # load Config only here because some applications don't want - # to depend on yaml and do not use this function - # from weboob.tools.config.yamlconfig import YamlConfig - # klass = YamlConfig from weboob.tools.config.iniconfig import INIConfig klass = INIConfig