Skip to content

Commit d2a8936

Browse files
author
kiran-garre
committed
chore: Run formatter
1 parent 7f71a68 commit d2a8936

File tree

1 file changed

+3
-1
lines changed
  • crates/chat-cli/src/cli/chat/cli

1 file changed

+3
-1
lines changed

crates/chat-cli/src/cli/chat/cli/todos.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,9 @@ impl std::fmt::Display for TodoDisplayEntry {
6565

6666
impl TodoSubcommand {
6767
pub async fn execute(self, os: &mut Os, session: &mut ChatSession) -> Result<ChatState, ChatError> {
68-
TodoListState::init_dir(os).await.map_err(|e| ChatError::Custom(format!("Could not create todos directory: {e}").into()))?;
68+
TodoListState::init_dir(os)
69+
.await
70+
.map_err(|e| ChatError::Custom(format!("Could not create todos directory: {e}").into()))?;
6971
match self {
7072
Self::ClearFinished => {
7173
let (todos, errors) = match get_all_todos(os).await {

0 commit comments

Comments
 (0)