Skip to content

Commit

Permalink
remove unused stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
aNaOH committed Jun 10, 2024
1 parent ff1e85c commit a488816
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use modio::mods::Mod;
use modio::mods::AddModOptions;

use std::fs::File;
use std::io::{Write, BufWriter};
use std::io::{BufWriter};
use std::path::Path;
use zip::write::FileOptions;
use zip::ZipWriter;
Expand Down Expand Up @@ -174,7 +174,7 @@ impl ModIOClient {
let zip_path = format!("{}.zip", modfile_path);
Self::compress_to_zip(modfile_path, &zip_path).await?;

let modfile = fs::read(zip_path).await?;
//let modfile = fs::read(zip_path).await?;

let response = self.client
.game(GameId::new(self.id))
Expand Down

0 comments on commit a488816

Please sign in to comment.