fix: remove redundant imports

This commit is contained in:
Amaan Qureshi 2024-02-19 05:57:21 -05:00
parent f526be8061
commit d95fcc83b9
5 changed files with 2 additions and 7 deletions

View file

@ -161,7 +161,7 @@ fn validate_precedences(grammar: &InputGrammar) -> Result<()> {
#[cfg(test)]
mod tests {
use super::*;
use crate::generate::grammars::{InputGrammar, Variable, VariableType};
use crate::generate::grammars::VariableType;
#[test]
fn test_validate_precedences_with_undeclared_precedence() {