We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
spellchecker.py
_spellchecker.py
1 parent ce280c9 commit ae0e8d2Copy full SHA for ae0e8d2
codespell_lib/_codespell.py
@@ -39,17 +39,17 @@
39
Tuple,
40
)
41
42
+from ._spellchecker import (
43
+ DetectedMisspelling,
44
+ LineTokenizer,
45
+ Spellchecker,
46
+)
47
from ._text_util import fix_case
48
49
# autogenerated by setuptools_scm
50
from ._version import ( # type: ignore[import-not-found]
51
__version__ as VERSION, # noqa: N812
52
-from .spellchecker import (
- DetectedMisspelling,
- LineTokenizer,
- Spellchecker,
-)
53
54
word_regex_def = r"[\w\-'’]+" # noqa: RUF001
55
# While we want to treat characters like ( or " as okay for a starting break,
codespell_lib/spellchecker.py renamed to codespell_lib/_spellchecker.py
0 commit comments