Skip to content

Commit 21448fd

Browse files
committed
fix(registry): export Padding from registry.checks
1 parent c6e1b47 commit 21448fd

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

proselint/registry/checks/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,3 +123,6 @@ def check(self, text: str) -> Iterator[CheckResult]:
123123
def check_with_flags(self, text: str) -> Iterator[CheckResult]:
124124
"""Apply the check over `text`, including specified `CheckFlags`."""
125125
return self.flags.apply(self.check(text), len(text))
126+
127+
128+
__all__ = ("Check", "CheckFlags", "CheckResult", "LintResult", "Padding")

0 commit comments

Comments
 (0)