mirror of
https://github.com/RustPython/Parser.git
synced 2025-07-20 11:35:20 +00:00
Format Code with rustfmt
This commit is contained in:
parent
5ce3f2c056
commit
3b99c07a1e
1 changed files with 3 additions and 1 deletions
|
@ -1619,7 +1619,9 @@ impl<O: OutputStream> Compiler<O> {
|
||||||
Starred { .. } => {
|
Starred { .. } => {
|
||||||
use std::string::String;
|
use std::string::String;
|
||||||
return Err(CompileError {
|
return Err(CompileError {
|
||||||
error: CompileErrorType::SyntaxError(String::from("Invalid starred expression")),
|
error: CompileErrorType::SyntaxError(String::from(
|
||||||
|
"Invalid starred expression",
|
||||||
|
)),
|
||||||
location: self.current_source_location.clone(),
|
location: self.current_source_location.clone(),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue