Skip to content

Commit

Permalink
fix bad types
Browse files Browse the repository at this point in the history
  • Loading branch information
codekansas committed Nov 23, 2024
1 parent 6c1c9c0 commit 59d92b3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ prost-build = "0.12"
members = ["krec/bindings"]

[workspace.package]
version = "0.2.1"
version = "0.2.2"
edition = "2021"
4 changes: 2 additions & 2 deletions krec/bindings/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -998,8 +998,8 @@ struct PyKRecHeader {
inner: KRecHeader,
}

#[pymethods]
#[gen_stub_pymethods]
#[pymethods]
impl PyKRecHeader {
#[new]
#[pyo3(signature = (uuid=None, task=None, robot_platform=None, robot_serial=None, start_timestamp=None, end_timestamp=None, values=None))]
Expand Down Expand Up @@ -1140,8 +1140,8 @@ struct PyKRecFrame {
inner: KRecFrame,
}

#[pymethods]
#[gen_stub_pymethods]
#[pymethods]
impl PyKRecFrame {
#[new]
#[pyo3(signature = (video_timestamp=None, frame_number=None, inference_step=None, values=None))]
Expand Down

0 comments on commit 59d92b3

Please sign in to comment.