Skip to content

Commit a2bdeea

Browse files
authored
Update logistic_regression.py
1 parent a4441a6 commit a2bdeea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

code/logistic_regression.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def __init__(self):
2121
self.bad_terms = self.read_bad_terms()
2222

2323
def read_bad_terms(self):
24-
bad_list = open("data/bad_words","r")
24+
bad_list = open("data//bad_words","r")
2525
bad_list = str(bad_list.readlines()[0]).split(",")
2626

2727
bad_terms = []

0 commit comments

Comments
 (0)