From eaf60916a494ff8d36cab05331205d2d4bfe38bc Mon Sep 17 00:00:00 2001 From: Poruri Sai Rahul Date: Wed, 6 Jul 2022 15:05:03 +0100 Subject: [PATCH] docs: remove duplicate word (#13080) --- docs/source/running_mypy.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/running_mypy.rst b/docs/source/running_mypy.rst index caf05dcdf258..afcc8c588ab3 100644 --- a/docs/source/running_mypy.rst +++ b/docs/source/running_mypy.rst @@ -205,7 +205,7 @@ will continue to be of type ``Any``. 1. To suppress a *single* missing import error, add a ``# type: ignore`` at the end of the line containing the import. -2. To suppress *all* missing import imports errors from a single library, add +2. To suppress *all* missing import errors from a single library, add a section to your :ref:`mypy config file ` for that library setting :confval:`ignore_missing_imports` to True. For example, suppose your codebase makes heavy use of an (untyped) library named ``foobar``. You can silence