Skip to content

Commit

Permalink
Cargo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Glyphack committed Sep 28, 2023
1 parent 18d1101 commit 55f328c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion enderpy/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use anyhow::{anyhow, Result, bail};
use anyhow::{Result, bail};
use clap::Parser as ClapParser;
use cli::{Cli, Commands};
use enderpy_python_parser::{token, Lexer, Parser};
Expand Down
2 changes: 1 addition & 1 deletion typechecker/src/semantic_analyzer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ impl TraversalVisitor for SemanticAnalyzer {
self.create_symbol(f.name.clone(), function_declaration);
}

fn visit_async_function_def(&mut self, f: &parser::ast::AsyncFunctionDef) {
fn visit_async_function_def(&mut self, _f: &parser::ast::AsyncFunctionDef) {
todo!()
}

Expand Down

0 comments on commit 55f328c

Please sign in to comment.