Skip to content
Snippets Groups Projects
Commit 0a79488f authored by IsolatedSushi's avatar IsolatedSushi
Browse files

Merge branch 'master' into Docstrings

parents 706c3af0 5784216a
No related branches found
No related tags found
1 merge request!22Docstrings
Pipeline #91878 canceled
......@@ -45,7 +45,7 @@ PythonLint:
# Install linter
- pip install pycodestyle
# Run linter on LocalProjector
- pycodestyle LocalProjector/ --exclude=*/generated/ --ignore=E501,W504
- pycodestyle LocalProjector/ --exclude=*/generated/ --ignore=E501,W504,W605
###############
# STAGE: Test #
......
......@@ -121,7 +121,7 @@ class KNNService(QObject):
ops = {"+": operator.add, "-": operator.sub}
strippedWord = "".join(sentence.split())
wordList = re.split('-|\\+', strippedWord)
wordList = re.split('-|\+', strippedWord)
wordList = [x.lower() for x in wordList]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment