Skip to content

Commit

Permalink
chore(flake8): Fix whitespacing
Browse files Browse the repository at this point in the history
./tests/test_text_files.py:210:1: W293 blank line contains whitespace
./tests/test_text_files.py:227:1: W293 blank line contains whitespace
  • Loading branch information
tony authored and twmr committed Sep 4, 2022
1 parent c37a7c5 commit cf57098
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_text_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,10 +204,10 @@ def add_sys(doctest_namespace):

def test_doctest_directive(testdir):
testdir.maketxtfile(
test_something="""
test_something=r"""
This is a paragraph. This is the
next sentence.
.. doctest::
>>> assert False
Expand All @@ -221,10 +221,10 @@ def test_doctest_directive(testdir):
result.stdout.fnmatch_lines(["*=== 1 passed in *"])

testdir.maketxtfile(
test_something="""
test_something=r"""
This is a paragraph. This is the
next sentence.
.. doctest::
>>> assert False
Expand Down

0 comments on commit cf57098

Please sign in to comment.