From d0175541789c9edbbdd207acff90dac6a4f18827 Mon Sep 17 00:00:00 2001 From: Austin Richardson Date: Wed, 14 Jan 2026 19:45:06 -0800 Subject: [PATCH] Add NeedletailError to stub file --- needletail.pyi | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/needletail.pyi b/needletail.pyi index 50f6c52..03049a5 100644 --- a/needletail.pyi +++ b/needletail.pyi @@ -1,6 +1,11 @@ from pathlib import Path from typing import Iterator, Optional, Union +class NeedletailError(Exception): + """ + Raised when parsing invalid fastx data with parse_fastx_file or parse_fastx_string + """ + class FastxReader(Iterator[Record]): """ An iterator that yields sequence records.