Skip to content

Commit

Permalink
big todo
Browse files Browse the repository at this point in the history
  • Loading branch information
davidszotten committed Aug 6, 2023
1 parent 860e1c6 commit d95f9e7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions crates/ruff/src/checkers/ast/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1286,8 +1286,9 @@ where
fn visit_format_spec(&mut self, format_spec: &'b Expr) {
match format_spec {
Expr::JoinedStr(ast::ExprJoinedStr { values, range: _ }) => {
for value in values {
self.visit_expr(value);
for _value in values {
// TODO
// self.visit_expr(value);
}
}
_ => unreachable!("Unexpected expression for format_spec"),
Expand Down

0 comments on commit d95f9e7

Please sign in to comment.