Skip to content

Commit

Permalink
#10 Fixed lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
OrBin committed Mar 17, 2019
1 parent ffaf35b commit 17e8043
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/triggers/test_text_triggers.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def update():


def test_regexp_trigger(update):
EMAIL_PATTERN = '^([a-z0-9_\.-]+)@([\da-z\.-]+)\.([a-z\.]{2,6})$'
EMAIL_PATTERN = r'^([a-z0-9_\.-]+)@([\da-z\.-]+)\.([a-z\.]{2,6})$'
trigger = _RegExpTrigger(EMAIL_PATTERN)

# Assuring that the regexp matches the message text
Expand Down

0 comments on commit 17e8043

Please sign in to comment.