about summary refs log tree commit diff stats
path: root/yt/src/description/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'yt/src/description/mod.rs')
-rw-r--r--yt/src/description/mod.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/yt/src/description/mod.rs b/yt/src/description/mod.rs
index 10f0e0c..f31c027 100644
--- a/yt/src/description/mod.rs
+++ b/yt/src/description/mod.rs
@@ -9,16 +9,16 @@
 // If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>.
 
 use crate::{
+    App,
     comments::output::display_fmt_and_less,
     storage::video_database::{
-        getters::{get_currently_playing_video, get_video_info_json},
         Video,
+        getters::{get_currently_playing_video, get_video_info_json},
     },
     unreachable::Unreachable,
-    App,
 };
 
-use anyhow::{bail, Result};
+use anyhow::{Result, bail};
 use yt_dlp::wrapper::info_json::InfoJson;
 
 pub async fn description(app: &App) -> Result<()> {