Skip to content

Commit 4e83d42

Browse files
authored
Export ValidationAbortedError (#227)
1 parent 841c3d2 commit 4e83d42

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/graphql/validation/validate.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,13 @@
1414
if TYPE_CHECKING:
1515
from .rules import ASTValidationRule
1616

17-
__all__ = ["assert_valid_sdl", "assert_valid_sdl_extension", "validate", "validate_sdl"]
17+
__all__ = [
18+
"assert_valid_sdl",
19+
"assert_valid_sdl_extension",
20+
"validate",
21+
"validate_sdl",
22+
"ValidationAbortedError",
23+
]
1824

1925

2026
class ValidationAbortedError(GraphQLError):

0 commit comments

Comments
 (0)