Skip to content

Commit 66f6aec

Browse files
committed
fixed syntax error
1 parent 7d22ffb commit 66f6aec

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/target
2+
/.pypirc
23

34
# Byte-compiled / optimized / DLL files
45
__pycache__/

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
edition = "2021"
55
description = "A python package written in rust for code navigation features like text search, fuzzy search and go to definition/references"
66
license = "MIT"
7-
authors = ["Arnav Chintawar [email protected]"]
7+
authors = ["[email protected]"]
88

99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010
[lib]
@@ -105,8 +105,8 @@ blake3 = "1.5.0"
105105
name = "code_nav_devon"
106106
version = "0.1.0"
107107
description = "A python package written in rust for code navigation features like text search, fuzzy search and go to definition/references"
108-
author = "Arnav Chintawar <[email protected]>"
108+
109109
license = "MIT"
110110
readme = "README.md" # Make sure this file exists in the root of your project
111-
home-page = "https://github.com/yourusername/code_nav_devon"
112-
repository = "https://github.com/yourusername/code_nav_devon"
111+
home-page = "https://github.com/blarApp/code-base-agent/tree/main"
112+
repository = "https://github.com/blarApp/code-base-agent/tree/main"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ fn get_hoverable_ranges(root_path_str: &str, index_path_str: &str, relative_path
196196
}
197197

198198
#[pymodule]
199-
fn code_nav_devon(m: &PyModule) -> PyResult<()> {
199+
fn code_nav_devon(m: &Bound<'_, PyModule>) -> PyResult<()> {
200200
m.add_function(wrap_pyfunction!(go_to, m)?)?;
201201
m.add_function(wrap_pyfunction!(text_search, m)?)?;
202202
m.add_function(wrap_pyfunction!(fuzzy_search, m)?)?;

0 commit comments

Comments
 (0)