Grammalecte  Diff

Differences From Artifact [4ad06f57bc]:

To Artifact [c6b35d80ee]:


1
2
3
4
5
6
7
8
9
10
11
12
# Spellchecker
# Wrapper for the IBDAWG class.
# Useful to check several dictionaries at once.

import ibdawg


dDictionaries = {
    "fr": "French.bdic",
    "en": "English.bdic"
}





|







1
2
3
4
5
6
7
8
9
10
11
12
# Spellchecker
# Wrapper for the IBDAWG class.
# Useful to check several dictionaries at once.

from . import ibdawg


dDictionaries = {
    "fr": "French.bdic",
    "en": "English.bdic"
}