Skip to content

Commit

Permalink
Remove left over rebase markers
Browse files Browse the repository at this point in the history
  • Loading branch information
dhruvmanila committed Jul 26, 2023
1 parent e7f4720 commit d109bfc
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions crates/ruff_python_ast/src/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3153,11 +3153,7 @@ impl From<Stmt> for AnyNode {
Stmt::Pass(node) => AnyNode::StmtPass(node),
Stmt::Break(node) => AnyNode::StmtBreak(node),
Stmt::Continue(node) => AnyNode::StmtContinue(node),
<<<<<<< HEAD
Stmt::LineMagic(node) => AnyNode::StmtLineMagic(node),
=======
Stmt::LineMagic(_) => todo!(),
>>>>>>> 4d5259219 (New AST nodes `todo!()`)
}
}
}
Expand Down Expand Up @@ -3192,11 +3188,7 @@ impl From<Expr> for AnyNode {
Expr::List(node) => AnyNode::ExprList(node),
Expr::Tuple(node) => AnyNode::ExprTuple(node),
Expr::Slice(node) => AnyNode::ExprSlice(node),
<<<<<<< HEAD
Expr::LineMagic(node) => AnyNode::ExprLineMagic(node),
=======
Expr::LineMagic(_) => todo!(),
>>>>>>> 4d5259219 (New AST nodes `todo!()`)
}
}
}
Expand Down

0 comments on commit d109bfc

Please sign in to comment.