mirror of
https://github.com/denoland/deno.git
synced 2024-12-21 23:04:45 -05:00
Fix clippy warning (#6503)
This commit is contained in:
parent
d924ad36ac
commit
0c735ebdc7
1 changed files with 2 additions and 2 deletions
|
@ -77,7 +77,7 @@ pub fn op_set_raw(
|
|||
|
||||
// For now, only stdin.
|
||||
let handle = match &mut resource_holder.resource {
|
||||
StreamResource::Stdin(_, _) => std::io::stdin().as_raw_handle(),
|
||||
StreamResource::Stdin(..) => std::io::stdin().as_raw_handle(),
|
||||
StreamResource::FsFile(ref mut option_file_metadata) => {
|
||||
if let Some((tokio_file, metadata)) = option_file_metadata.take() {
|
||||
match tokio_file.try_into_std() {
|
||||
|
@ -245,7 +245,7 @@ pub fn op_isatty(
|
|||
}
|
||||
}
|
||||
Err(StreamResource::FsFile(_)) => unreachable!(),
|
||||
Err(StreamResource::Stdin(_, _)) => Ok(atty::is(atty::Stream::Stdin)),
|
||||
Err(StreamResource::Stdin(..)) => Ok(atty::is(atty::Stream::Stdin)),
|
||||
_ => Ok(false),
|
||||
})?;
|
||||
Ok(JsonOp::Sync(json!(isatty)))
|
||||
|
|
Loading…
Reference in a new issue