diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2023-01-26 19:07:54 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2023-01-26 19:07:54 -0500 |
commit | 2d628d40d60f967f135a8c21a62a000716c45054 (patch) | |
tree | ddeab6c0cb3309d42b4618891104f2570bc4cbbb /tests/test_phystokens.py | |
parent | 92fe560a9368a5ac32ad5a2a272913b1b0ebfdd5 (diff) | |
download | python-coveragepy-git-2d628d40d60f967f135a8c21a62a000716c45054.tar.gz |
style: remove needless trailing commas
Diffstat (limited to 'tests/test_phystokens.py')
-rw-r--r-- | tests/test_phystokens.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_phystokens.py b/tests/test_phystokens.py index 5807f00d..2f1f7307 100644 --- a/tests/test_phystokens.py +++ b/tests/test_phystokens.py @@ -103,7 +103,7 @@ class PhysTokensTest(CoverageTest): # Check the tokenization of the stress-test files. # And check that those files haven't been incorrectly "fixed". with warnings.catch_warnings(): - warnings.filterwarnings("ignore", message=r".*invalid escape sequence",) + warnings.filterwarnings("ignore", message=r".*invalid escape sequence") stress = os.path.join(TESTS_DIR, fname) self.check_file_tokenization(stress) |