1
Fork 0
mirror of https://github.com/Steffo99/unimore-bda-6.git synced 2024-11-21 23:44:19 +00:00

Document and fix imports in .analysis

This commit is contained in:
Steffo 2023-02-10 03:17:36 +01:00
parent 7e1b4cfc71
commit 218c91bcc1
Signed by: steffo
GPG key ID: 2A24051445686895

View file

@ -1,8 +1,7 @@
from .base import BaseSentimentAnalyzer """
from .nltk_sentiment import NLTKSentimentAnalyzer This module contains all implemented types of sentiment analyzers.
"""
from .base import *
__all__ = ( from .nltk_sentiment import *
"BaseSentimentAnalyzer", from .tf_text import *
"NLTKSentimentAnalyzer",
)