Skip to content

Commit

Permalink
clippy not windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jessekrubin committed Dec 20, 2024
1 parent d0f7543 commit 7624fca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/ryo3-fspath/src/fspath.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,8 @@ impl PyFsPath {

#[cfg(not(target_os = "windows"))]
#[getter]
fn drive(&self) -> PyResult<Option<String>> {
Ok(None)
fn drive(&self) -> Option<String> {
None
}

#[getter]
Expand Down

0 comments on commit 7624fca

Please sign in to comment.