Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
jackh54 committed Nov 20, 2024
1 parent 3413835 commit 5e26eb5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Binary file modified .DS_Store
Binary file not shown.
6 changes: 3 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import nltk
nltk.data.path.append('nlkt_data')
nltk.download('vader_lexicon', download_dir='nlkt_data')
import streamlit as st
import time
from datetime import datetime
from utils import (
analyze_sentiment, get_color_scheme, create_sentiment_chart,
get_emotion_color, extract_text_from_pdf, extract_text_from_docx,
create_comparison_chart, get_text_summary, calculate_trend
)

nltk.data.path.append('nlkt_data')
nltk.download('vader_lexicon', download_dir='nlkt_data')

# set up the page with a nice title, icon, and layout
st.set_page_config(
page_title="Sentiment Analyzer",
Expand Down

0 comments on commit 5e26eb5

Please sign in to comment.