From 3c2864f161a6fb4fd1425b56ce3bb579bc5c6bb4 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" Date: Tue, 11 Jun 2019 18:46:43 +0200 Subject: [PATCH] Added spell checker class --- nw/tools/spellcheck.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 nw/tools/spellcheck.py diff --git a/nw/tools/spellcheck.py b/nw/tools/spellcheck.py new file mode 100644 index 00000000..17f4f59c --- /dev/null +++ b/nw/tools/spellcheck.py @@ -0,0 +1,21 @@ +# -*- 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