Fix typo in banned-from (#6977)

Oops...
This commit is contained in:
Charlie Marsh 2023-08-29 09:39:09 -04:00 committed by GitHub
parent 4d49d5e845
commit b7634b6ede
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -1000,7 +1000,7 @@ pub struct Flake8ImportConventionsOptions {
"#
)]
/// A list of modules that should not be imported from using the
/// `import ... from ...` syntax.
/// `from ... import ...` syntax.
///
/// For example, given `banned-from = ["pandas"]`, `from pandas import DataFrame`
/// would be disallowed, while `import pandas` would be allowed.