Skip to content

Commit

Permalink
feat(#77): allow for all imports
Browse files Browse the repository at this point in the history
  • Loading branch information
h1alexbel committed Oct 8, 2024
1 parent 5177230 commit fbd0b59
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cli/src/sys/current_port.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,11 @@ pub fn current_port() -> usize {
mod tests {
#[cfg_attr(target_os = "windows", allow(unused_imports))]
use crate::sys::current_port::current_port;
#[cfg_attr(target_os = "windows", allow(unused_imports))]
use anyhow::Result;
#[cfg_attr(target_os = "windows", allow(unused_imports))]
use assert_cmd::Command;
#[cfg_attr(target_os = "windows", allow(unused_imports))]
use defer::defer;

#[cfg(not(target_os = "windows"))]
Expand Down

0 comments on commit fbd0b59

Please sign in to comment.