style: formatting

This commit is contained in:
Matouš Volf
2024-09-08 09:56:11 +02:00
parent 823ae007e3
commit 7b635ea372
2 changed files with 10 additions and 5 deletions

View File

@ -63,8 +63,10 @@ pub struct NewTask {
impl NewTask {
pub fn new(
title: String, deadline: Option<chrono::NaiveDate>,
category: Category, project_id: Option<i32>,
title: String,
deadline: Option<chrono::NaiveDate>,
category: Category,
project_id: Option<i32>,
) -> Self {
Self { title, deadline, category, project_id }
}