Skip to content

Commit

Permalink
Allow unused code in the dylib
Browse files Browse the repository at this point in the history
  • Loading branch information
JaciBrunning committed Jan 1, 2025
1 parent 93f52c3 commit baea48a
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions libgrapplefrc-py/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
use pyo3::prelude::*;
#[allow(dead_code)]
pub use pyo3::prelude::*;

use grapplefrcdriver::lasercan::LaserCAN;
use grapplefrcdriver::mitocandria::MitoCANdria;
#[allow(dead_code)]
pub use grapplefrcdriver::lasercan::LaserCAN;

#[allow(dead_code)]
pub use grapplefrcdriver::mitocandria::MitoCANdria;

// /// Formats the sum of two numbers as string.
// #[pyfunction]
Expand Down

0 comments on commit baea48a

Please sign in to comment.