Skip to content

Commit

Permalink
Removing system messages, which weren't necessary
Browse files Browse the repository at this point in the history
  • Loading branch information
LyubomirT committed Mar 12, 2023
1 parent 752efee commit 6be2561
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Binary file removed dist/orionbot-0.9.2-py2.py3-none-any.whl
Binary file not shown.
Binary file removed dist/orionbot-0.9.2.tar.gz
Binary file not shown.
3 changes: 3 additions & 0 deletions src/orionbot.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import json
import os.path
from collections import defaultdict
import os

import nltk
from nltk.stem import WordNetLemmatizer
Expand All @@ -11,6 +12,8 @@
nltk.download('wordnet')
nltk.download("stopwords")

os.system("clear")

class Chatbot:
def __init__(self, name, lemmatizer=None, stopwords=None, data_file=None):
self.name = name
Expand Down

0 comments on commit 6be2561

Please sign in to comment.