From a354d9ead66bfc49be21d480782a51c8c38572b0 Mon Sep 17 00:00:00 2001 From: Junzhuo ZHOU Date: Thu, 26 Sep 2024 08:34:30 -0700 Subject: [PATCH] Expose internal types as public access (#13509) --- crates/ruff_python_parser/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ruff_python_parser/src/lib.rs b/crates/ruff_python_parser/src/lib.rs index 7569db2ca7..df11678118 100644 --- a/crates/ruff_python_parser/src/lib.rs +++ b/crates/ruff_python_parser/src/lib.rs @@ -67,7 +67,7 @@ use std::iter::FusedIterator; use std::ops::Deref; -pub use crate::error::{FStringErrorType, ParseError, ParseErrorType}; +pub use crate::error::{FStringErrorType, LexicalErrorType, ParseError, ParseErrorType}; pub use crate::token::{Token, TokenKind}; use crate::parser::Parser;