Skip to content

Commit

Permalink
fix(cargo): fixes warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ja-ko committed Jun 2, 2024
1 parent a5a37df commit 9963f74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use log::{debug, error, info};
use notify_rust::{Notification, Timeout};
use crate::web::client::PokerClient;
use crate::config::Config;
use crate::models::{GamePhase, LogEntry, LogLevel, LogSource, Player, Room, Vote, VoteData};
use crate::models::{GamePhase, LogEntry, LogLevel, LogSource, Room, Vote, VoteData};

pub type AppResult<T> = std::result::Result<T, Box<dyn error::Error>>;

Expand Down
2 changes: 1 addition & 1 deletion src/tui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use std::collections::HashMap;
use crossterm::event::KeyEvent;
use crossterm::terminal;
use crossterm::terminal::{EnterAlternateScreen, LeaveAlternateScreen};
use log::{debug, info};
use log::{debug};
use ratatui::prelude::*;
use crate::app::{App, AppResult};
use crate::events::{Event, EventHandler, FocusChange};
Expand Down

0 comments on commit 9963f74

Please sign in to comment.