From 9dc59cbb81d59d7bde62ed8c88fae9cff9d7c86e Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Sun, 21 Jan 2024 15:30:14 +0000 Subject: [PATCH] Docs: fix isort rule code (#9598) ## Summary Fixes a typo in the docs, the isort rule code in an example was not correct. --- docs/linter.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/linter.md b/docs/linter.md index 39b0d73bbd..7b8dbd086e 100644 --- a/docs/linter.md +++ b/docs/linter.md @@ -308,7 +308,7 @@ For import sorting, the `noqa` should come at the end of the first line in the i will apply to all imports in the block, like so: ```python -import os # noqa: I100 +import os # noqa: I001 import abc ```