Added spell checker class

This commit is contained in:
Veronica K. B. Olsen
2019-06-11 18:46:43 +02:00
parent 22ae5fdaf0
commit 3c2864f161
+21
View File
@@ -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