From 3ec725734559d384d5cbf59177740ba5c2773afc Mon Sep 17 00:00:00 2001 From: Bastien Gerard Date: Mon, 24 Oct 2022 22:17:51 +0200 Subject: [PATCH] remove docstring of OptionManager as typing is sufficient --- src/flake8/options/manager.py | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/src/flake8/options/manager.py b/src/flake8/options/manager.py index 7c40cb9..8b4ec19 100644 --- a/src/flake8/options/manager.py +++ b/src/flake8/options/manager.py @@ -319,18 +319,7 @@ class OptionManager: parents: list[argparse.ArgumentParser], formatter_names: list[str], ) -> None: - """Initialize an instance of an OptionManager. - - :param prog: - Name of the actual program (e.g., flake8). - :param version: - Version string for the program. - :param usage: - Basic usage string used by the OptionParser. - :param parents: - A list of ArgumentParser objects whose arguments should also be - included. - """ + """Initialize an instance of an OptionManager.""" self.formatter_names = formatter_names self.parser = argparse.ArgumentParser( prog="flake8",