Skip to content

Commit 6b271fb

Browse files
committed
errors: (bonus) group remaining imports by module
1 parent 4ee2f89 commit 6b271fb

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

scylla/src/errors.rs

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
//! This module contains various errors which can be returned by [`Session`](crate::client::session::Session).
22
3-
use std::{
4-
error::Error,
5-
io::ErrorKind,
6-
net::{AddrParseError, IpAddr, SocketAddr},
7-
num::ParseIntError,
8-
sync::Arc,
9-
};
3+
use std::error::Error;
4+
use std::io::ErrorKind;
5+
use std::net::{AddrParseError, IpAddr, SocketAddr};
6+
use std::num::ParseIntError;
7+
use std::sync::Arc;
108

119
use thiserror::Error;
1210

0 commit comments

Comments
 (0)