From 218c91bcc1943c9dd948e4939ec56cc78b51fe52 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Fri, 10 Feb 2023 03:17:36 +0100 Subject: [PATCH] Document and fix imports in `.analysis` --- unimore_bda_6/analysis/__init__.py | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/unimore_bda_6/analysis/__init__.py b/unimore_bda_6/analysis/__init__.py index 4c02c5c..0ecbd3e 100644 --- a/unimore_bda_6/analysis/__init__.py +++ b/unimore_bda_6/analysis/__init__.py @@ -1,8 +1,7 @@ -from .base import BaseSentimentAnalyzer -from .nltk_sentiment import NLTKSentimentAnalyzer +""" +This module contains all implemented types of sentiment analyzers. +""" - -__all__ = ( - "BaseSentimentAnalyzer", - "NLTKSentimentAnalyzer", -) +from .base import * +from .nltk_sentiment import * +from .tf_text import *