Skip to content

Commit

Permalink
Fix: readme typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pylover committed Dec 6, 2021
1 parent 2479112 commit ae417ee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -38,9 +38,9 @@ replace = [

with Sanitizer(blacklist, replace) as sanitize: # Loading(Slow) part
try:
print(sanitize('foo bar baz')) # Fast call!
print(sanitize('foo bar baz')) # Fast call!
except BlacklistedError:
print('Validation failed!')
# TODO: Handle exception
```

## Contribution
Expand Down
2 changes: 1 addition & 1 deletion turboguard/__init__.py
Expand Up @@ -2,7 +2,7 @@
from .core import BlacklistedError


__version__ = '1.0.0'
__version__ = '1.0.1'


class Sanitizer:
Expand Down

0 comments on commit ae417ee

Please sign in to comment.