Skip to content

Commit 4b80a5d

Browse files
committed
remove git symbols
1 parent 56f9f69 commit 4b80a5d

File tree

3 files changed

+0
-16
lines changed

3 files changed

+0
-16
lines changed

Cargo.lock

Lines changed: 0 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -159,15 +159,7 @@ rustpython-wtf8 = { path = "wtf8", version = "0.4.0" }
159159
rustpython-doc = { git = "https://github.com/RustPython/__doc__", tag = "0.3.0", version = "0.3.0" }
160160

161161
ruff_python_parser = { git = "https://github.com/astral-sh/ruff.git", tag = "0.14.1" }
162-
<<<<<<< HEAD
163162
ruff_python_codegen = { git = "https://github.com/astral-sh/ruff.git", tag = "0.14.1" }
164-
||||||| 056795eed
165-
ruff_python_parser = { git = "https://github.com/astral-sh/ruff.git", tag = "0.11.0" }
166-
ruff_python_ast = { git = "https://github.com/astral-sh/ruff.git", tag = "0.11.0" }
167-
ruff_text_size = { git = "https://github.com/astral-sh/ruff.git", tag = "0.11.0" }
168-
ruff_source_file = { git = "https://github.com/astral-sh/ruff.git", tag = "0.11.0" }
169-
=======
170-
>>>>>>> upstream/main
171163
ruff_python_ast = { git = "https://github.com/astral-sh/ruff.git", tag = "0.14.1" }
172164
ruff_text_size = { git = "https://github.com/astral-sh/ruff.git", tag = "0.14.1" }
173165
ruff_source_file = { git = "https://github.com/astral-sh/ruff.git", tag = "0.14.1" }

compiler/codegen/src/compile.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,6 @@ enum ComprehensionType {
147147
Dict,
148148
}
149149

150-
<<<<<<< HEAD
151150
fn unparse_expr(expr: &Expr) -> String {
152151
use ruff_python_ast::str::Quote;
153152
use ruff_python_codegen::{Generator, Indentation};
@@ -157,9 +156,6 @@ fn unparse_expr(expr: &Expr) -> String {
157156
.expr(expr)
158157
}
159158

160-
||||||| 056795eed
161-
=======
162-
>>>>>>> upstream/main
163159
fn validate_duplicate_params(params: &Parameters) -> Result<(), CodegenErrorType> {
164160
let mut seen_params = HashSet::new();
165161
for param in params {

0 commit comments

Comments
 (0)