From 2a328bcea1559a5fa1b914db8805c748df0e18b3 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Fri, 5 Aug 2016 09:33:28 +0200 Subject: [PATCH] Remove unneeded fixme Nothing gets stuff from the config outside of config.get anyways. Closes #107. --- scripts/dev/pylint_checkers/qute_pylint/config.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/scripts/dev/pylint_checkers/qute_pylint/config.py b/scripts/dev/pylint_checkers/qute_pylint/config.py index 84e1f2c86..b93b211f1 100644 --- a/scripts/dev/pylint_checkers/qute_pylint/config.py +++ b/scripts/dev/pylint_checkers/qute_pylint/config.py @@ -57,11 +57,7 @@ class ConfigChecker(checkers.BaseChecker): self._check_config(node) def _check_config(self, node): - """Check that the arguments to config.get(...) are valid. - - FIXME: We should check all ConfigManager calls. - https://github.com/The-Compiler/qutebrowser/issues/107 - """ + """Check that the arguments to config.get(...) are valid.""" try: sect_arg = utils.get_argument_from_call(node, position=0, keyword='sectname')