chore: fmt

Signed-off-by: azjezz <azjezz@protonmail.com>
This commit is contained in:
azjezz 2022-12-10 12:31:35 +01:00
parent ea008412fc
commit ef87f4dd4e
No known key found for this signature in database
GPG Key ID: B00E0A46B3F1C157
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
use crate::lexer::token::{Span, TokenKind};
use crate::lexer::token::Span;
use super::Expression;

View File

@ -4,7 +4,7 @@ use crate::lexer::error::SyntaxError;
use crate::lexer::token::DocStringIndentationKind;
use crate::lexer::token::TokenKind;
use crate::lexer::DocStringKind;
use crate::parser::ast;
use crate::parser::ast::identifiers::Identifier;
use crate::parser::ast::variables::Variable;
use crate::parser::ast::StringPart;

View File

@ -164,4 +164,4 @@ pub fn skip_open_tag(state: &mut State) -> ParseResult<()> {
}
Ok(())
}
}