Browse Source

remove if condition that returned `3` for both branches

I'm including this in a seaparate commit to call attention to it,
in case the same return value is itself a bug.
tags/v0.3.6
Michael-J-Ward 1 year ago
parent
commit
39c71bfca1
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      node-hub/dora-rerun/src/main.rs

+ 1
- 1
node-hub/dora-rerun/src/main.rs View File

@@ -63,7 +63,7 @@ fn main() -> Result<()> {
} else {
"bgr8"
};
let channels = if encoding == "bgr8" { 3 } else { 3 };
let channels = 3;

let shape = vec![
TensorDimension {


Loading…
Cancel
Save