Skip to content

Commit f46d3ba

Browse files
committed
Address feedback
1 parent 85d2ecd commit f46d3ba

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/lib.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
#![allow(
2+
clippy::needless_range_loop,
3+
clippy::ptr_arg,
4+
clippy::type_complexity,
5+
clippy::too_many_arguments,
6+
clippy::many_single_char_names
7+
)]
18
#![warn(missing_docs)]
29
#![warn(missing_doc_code_examples)]
310

@@ -64,13 +71,6 @@
6471
//! let y_hat = knn.predict(&x).unwrap();
6572
//! ```
6673
67-
#![allow(
68-
clippy::needless_range_loop,
69-
clippy::ptr_arg,
70-
clippy::type_complexity,
71-
clippy::too_many_arguments,
72-
clippy::many_single_char_names
73-
)]
7474
/// Various algorithms and helper methods that are used elsewhere in SmartCore
7575
pub mod algorithm;
7676
/// Algorithms for clustering of unlabeled data

0 commit comments

Comments
 (0)