sreepathi-ravikumar commited on
Commit
060357a
·
verified ·
1 Parent(s): 5632a36

Update rust_highlight/src/lib.rs

Browse files
Files changed (1) hide show
  1. rust_highlight/src/lib.rs +1 -5
rust_highlight/src/lib.rs CHANGED
@@ -121,11 +121,7 @@ fn concat_videos(clips: Vec<&str>) -> PyResult<String> {
121
  #[pymodule]
122
  fn rust_highlight(_py: Python, m: &PyModule) -> PyResult<()> {
123
  m.add_function(wrap_pyfunction!(render_video, m)?)?;
 
124
  Ok(())
125
  }
126
 
127
- #[pymodule]
128
- fn rust_combiner(_py: Python, m: &PyModule) -> PyResult<()> {
129
- m.add_function(wrap_pyfunction!(combine_clips, m)?)?;
130
- Ok(())
131
- }
 
121
  #[pymodule]
122
  fn rust_highlight(_py: Python, m: &PyModule) -> PyResult<()> {
123
  m.add_function(wrap_pyfunction!(render_video, m)?)?;
124
+ m.add_function(wrap_pyfunction!(combine_clips, m)?)?;
125
  Ok(())
126
  }
127