From 76515bbb8e0f5679d5ad69f0b38eae059ef593ce Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Sun, 18 Aug 2019 22:05:00 +0000 Subject: [PATCH] Apply suggestion to src/flake8/formatting/base.py --- src/flake8/formatting/base.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/flake8/formatting/base.py b/src/flake8/formatting/base.py index 36dc905..ae78f49 100644 --- a/src/flake8/formatting/base.py +++ b/src/flake8/formatting/base.py @@ -38,9 +38,11 @@ class BaseFormatter(object): This also calls a hook, :meth:`after_init`, so subclasses do not need to call super to call this method. - :param argparse.Namespace options: + :param options: User specified configuration parsed from both configuration files and the command-line interface. + :type options: + :class:`argparse.Namespace` """ self.options = options self.filename = options.output_file