Skip to content

Commit

Permalink
Clarify special control flow parameters for PLR0917: `too-many-posi…
Browse files Browse the repository at this point in the history
…tional` (#11978)
  • Loading branch information
Peiffap authored Jun 23, 2024
1 parent 375d2c8 commit 0c8b5eb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ use crate::checkers::ast::Checker;
/// readers than providing arguments by name.
///
/// Consider refactoring functions with many arguments into smaller functions
/// with fewer arguments, using objects to group related arguments, or
/// migrating to keyword-only arguments.
/// with fewer arguments, using objects to group related arguments, or migrating to
/// [keyword-only arguments](https://docs.python.org/3/tutorial/controlflow.html#special-parameters).
///
/// ## Example
/// ```python
Expand Down

0 comments on commit 0c8b5eb

Please sign in to comment.