22 lines
345 B
Python
22 lines
345 B
Python
# -*- 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
|