Files
novelWriter/nw/tools/spellcheck.py
T
Veronica K. B. Olsen 3c2864f161 Added spell checker class
2019-06-11 18:46:43 +02:00

22 lines
345 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# -*- coding: utf-8 -*-
"""novelWriter Spell Check Wrapper
novelWriter Spell Check Wrapper
===================================
Wrapper class for spell checking
File History:
Created: 2019-06-11 [0.1.5]
"""
import logging
import enchant
import nw
logger = logging.getLogger(__name__)
class NWSpellCheck():
# END Class NWSpellCheck