Skip to content

Commit

Permalink
cargo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
malta895 committed Sep 8, 2024
1 parent 6d91f73 commit 07a8fd7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/parser/lexer.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use std::io::{self, BufRead};
use std::io::{BufRead};

use super::{error::JSONError, token::Token};

Expand Down
2 changes: 1 addition & 1 deletion src/parser/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use std::io::{self, BufRead};
use std::io::{BufRead};

mod token;
use lexer::lex;
Expand Down

0 comments on commit 07a8fd7

Please sign in to comment.