diff options
| author | Santo Cariotti <santo@dcariotti.me> | 2022-09-20 13:55:51 +0000 |
|---|---|---|
| committer | Santo Cariotti <santo@dcariotti.me> | 2022-09-20 13:55:51 +0000 |
| commit | f7c2f950a5077a44036da9d0757e2d26fec93b3f (patch) | |
| tree | 0a19e91802ff6896989502ba5614b1af8527a13d | |
| parent | 7287390e0398570961fd998652bd180d6fb13b78 (diff) | |
Ignore a Clippy warning for too arguments
| -rw-r--r-- | src/models/model.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/models/model.rs b/src/models/model.rs index 6b7c166..5aa3ddf 100644 --- a/src/models/model.rs +++ b/src/models/model.rs @@ -62,6 +62,7 @@ pub struct ModelUpload { } impl Model { + #[allow(clippy::too_many_arguments)] pub fn new( name: String, description: Option<String>, |
