Skip to content

Commit

Permalink
Fix long line
Browse files Browse the repository at this point in the history
  • Loading branch information
TRManderson committed Jan 2, 2020
1 parent 412e969 commit 2b683be
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/test_yelling.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ def filter_valid_lowercases(msgs: List[T]) -> Generator[T, None, None]:
msg = body.get('text')
if msg is None:
continue
if msg.startswith('WHAT IS THE MEANING OF THIS ARCANE SYMBOL') and msg.endswith(" I RECOGNISE IT NOT!"):
if (
msg.startswith('WHAT IS THE MEANING OF THIS ARCANE SYMBOL')
and msg.endswith(" I RECOGNISE IT NOT!")
):
continue
if msg == 'OH, NO! NOT THE `a`S! NOT THE `a`S! AAAAAHHHHH!':
continue
Expand Down

0 comments on commit 2b683be

Please sign in to comment.