Skip to content

Commit

Permalink
Run cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
charliermarsh committed Nov 28, 2022
1 parent 6f31b00 commit 55619b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pydocstyle/plugins.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1324,8 +1324,8 @@ fn missing_args(checker: &mut Checker, definition: &Definition, docstrings_args:
}
}

// Check specifically for `vararg` and `kwarg`, which can be prefixed with a single or
// double star, respectively.
// Check specifically for `vararg` and `kwarg`, which can be prefixed with a
// single or double star, respectively.
if let Some(arg) = &arguments.vararg {
let arg_name = arg.node.arg.as_str();
let starred_arg_name = format!("*{arg_name}");
Expand Down

0 comments on commit 55619b3

Please sign in to comment.