Skip to content

Commit

Permalink
Merge 2878332 into 3d78dce
Browse files Browse the repository at this point in the history
  • Loading branch information
barrust committed Jan 29, 2019
2 parents 3d78dce + 2878332 commit de3f712
Show file tree
Hide file tree
Showing 3 changed files with 115 additions and 101 deletions.
18 changes: 13 additions & 5 deletions spellchecker/__init__.py
@@ -1,7 +1,15 @@
''' SpellChecker Module '''
from . spellchecker import SpellChecker, WordFrequency
from . info import (__author__, __maintainer__, __email__, __license__, # noqa: F401
__version__, __credits__, __url__, __bugtrack_url__) # noqa: F401
""" SpellChecker Module """
from .spellchecker import SpellChecker, WordFrequency
from .info import (
__author__,
__maintainer__,
__email__,
__license__, # noqa: F401
__version__,
__credits__,
__url__,
__bugtrack_url__,
) # noqa: F401


__all__ = ['SpellChecker', 'WordFrequency']
__all__ = ["SpellChecker", "WordFrequency"]
18 changes: 9 additions & 9 deletions spellchecker/info.py
@@ -1,11 +1,11 @@
''' SpellChecker Information '''
""" SpellChecker Information """


__author__ = 'Tyler Barrus'
__maintainer__ = 'Tyler Barrus'
__email__ = 'barrust@gmail.com'
__license__ = 'MIT'
__version__ = '0.3.0'
__credits__ = ['Peter Norvig']
__url__ = 'https://github.com/barrust/pyspellchecker'
__bugtrack_url__ = '{0}/issues'.format(__url__)
__author__ = "Tyler Barrus"
__maintainer__ = "Tyler Barrus"
__email__ = "barrust@gmail.com"
__license__ = "MIT"
__version__ = "0.3.0"
__credits__ = ["Peter Norvig"]
__url__ = "https://github.com/barrust/pyspellchecker"
__bugtrack_url__ = "{0}/issues".format(__url__)

0 comments on commit de3f712

Please sign in to comment.