Skip to content

Commit 1497f9e

Browse files
committed
fix: remove unused imports
1 parent e4f3c32 commit 1497f9e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/url.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
use std::collections::hash_map::DefaultHasher;
22
use std::fmt;
3-
use std::fmt::{format, Formatter};
3+
use std::fmt::{Formatter};
44
use std::hash::{Hash, Hasher};
5-
use std::ops::Deref;
65

76
use idna::punycode::decode_to_string;
87
use pyo3::exceptions::PyValueError;
98
use pyo3::once_cell::GILOnceCell;
109
use pyo3::pyclass::CompareOp;
1110
use pyo3::types::{PyDict, PyType};
1211
use pyo3::{intern, prelude::*};
13-
use url::quirks::username;
1412
use url::Url;
1513

1614
use crate::tools::SchemaDict;

0 commit comments

Comments
 (0)