Skip to content

Commit

Permalink
Fix variable name in lambda (#590)
Browse files Browse the repository at this point in the history
  • Loading branch information
stroxler authored Jan 7, 2022
1 parent 6434ca8 commit 2f75246
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion native/libcst/src/nodes/statement.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1598,7 +1598,7 @@ impl<'a> Inflate<'a> for ClassDef<'a> {
self.lpar = self.lpar.map(|lpar| lpar.inflate(config)).transpose()?;
self.bases = self.bases.inflate(config)?;
self.keywords = self.keywords.inflate(config)?;
self.rpar = self.rpar.map(|lpar| lpar.inflate(config)).transpose()?;
self.rpar = self.rpar.map(|rpar| rpar.inflate(config)).transpose()?;
// TODO: set whitespace_after_arg for last arg?
}

Expand Down

0 comments on commit 2f75246

Please sign in to comment.