Skip to content
This repository has been archived by the owner on Jun 9, 2024. It is now read-only.

Commit

Permalink
Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
containerscrew committed Nov 17, 2023
1 parent 4b25779 commit 466ac02
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions src/commands/config.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
use crate::utils::extend_path;
use serde::{Deserialize, Serialize};
use std::fs::{File, OpenOptions};
use std::io::{BufRead, Write};
use std::fs::{OpenOptions};
use std::io::{Write};
use std::process::exit;
use std::{fs, io};

use tracing::{error, info};

// The name of the file and directory for the configuration will not be custom by the moment
Expand Down
8 changes: 4 additions & 4 deletions src/utils.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
use crate::commands::config::{CONFIG_FILE_PATH, CREDENTIALS_FILE_PATH};
use crate::commands::config::{CREDENTIALS_FILE_PATH};
use aws_sso_auth::AccountCredentials;
use colored::Colorize;
use configparser::ini::Ini;
use log::{error, info};
use std::fs::{File, OpenOptions};

use std::io;
use std::io::{Read, Write};
use std::process::exit;
use std::io::{Write};


pub fn print_banner() {
let banner = r#"
Expand Down

0 comments on commit 466ac02

Please sign in to comment.