Skip to content

Commit

Permalink
Optimized imports for type checking.
Browse files Browse the repository at this point in the history
  • Loading branch information
SekouD committed Jun 17, 2018
1 parent 4c4f01a commit 811fe07
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mlconjug/PyVerbiste.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from collections import OrderedDict
import pkg_resources

__all__ = ['Verbiste', 'Verb', 'VerbFr', 'VerbEn', 'VerbEs', 'VerbIt', 'VerbPt', 'VerbRo', 'VerbInfo']
# __all__ = ['Verbiste', 'Verb', 'VerbFr', 'VerbEn', 'VerbEs', 'VerbIt', 'VerbPt', 'VerbRo', 'VerbInfo']

RESOURCE_PACKAGE = __name__

Expand Down
2 changes: 1 addition & 1 deletion mlconjug/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
import locale
import gettext

__all__ = (mlconjug.__all__ + PyVerbiste.__all__)
# __all__ = (mlconjug.__all__ + PyVerbiste.__all__)

# Sets up the automatic translation of annotated strings displayed to the user.
RESOURCE_PACKAGE = __name__
Expand Down
2 changes: 1 addition & 1 deletion mlconjug/mlconjug.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

import pkg_resources

__all__ = ['Conjugator', 'EndingCountVectorizer', 'DataSet', 'Model', 'LinearSVC', 'SGDClassifier', 'SelectFromModel', 'Pipeline']
# __all__ = ['Conjugator', 'EndingCountVectorizer', 'DataSet', 'Model', 'LinearSVC', 'SGDClassifier', 'SelectFromModel', 'Pipeline']

RESOURCE_PACKAGE = __name__

Expand Down

0 comments on commit 811fe07

Please sign in to comment.