Docs: fix isort rule code (#9598)

## Summary

Fixes a typo in the docs, the isort rule code in an example was not
correct.
This commit is contained in:
Robert Craigie 2024-01-21 15:30:14 +00:00 committed by GitHub
parent a42600e9a2
commit 9dc59cbb81
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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
```