Skip to content

Commit

Permalink
1.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vardecab committed May 18, 2021
1 parent 9cf93a8 commit fe956a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ python script.py

## Release History

- 1.5.2: Added one more rule to clean the data.
- 1.5.1: Fixed Windows 10 notifications bug.
- 1.5: Added language detection to skip translation of words already in desired language.
- 1.4: Added notifications for macOS & Windows.
Expand Down
1 change: 1 addition & 0 deletions script.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@
read_source_file = [word.replace('—','') for word in read_source_file] # remove character
read_source_file = [word.replace('?','') for word in read_source_file] # remove character
read_source_file = [word.replace('!','') for word in read_source_file] # remove character
read_source_file = [word.replace('"','') for word in read_source_file] # remove character
read_source_file = [word.replace('‘','') for word in read_source_file] # remove character
read_source_file = [word.replace('==========','') for word in read_source_file] # remove characters

Expand Down

0 comments on commit fe956a0

Please sign in to comment.