Skip to content

Commit 13d8af8

Browse files
committed
PEP8 fixes
1 parent 70c0990 commit 13d8af8

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

lib/matplotlib/testing/exceptions.py

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
class KnownFailureTest(Exception):
2-
'''Raise this exception to mark a test as a known failing test.'''
3-
pass
2+
"""
3+
Raise this exception to mark a test as a known failing test.
4+
"""
5+
46

57
class KnownFailureDidNotFailTest(Exception):
6-
'''Raise this exception to mark a test should have failed but did not.'''
7-
pass
8+
"""
9+
Raise this exception to mark a test should have failed but did not.
10+
"""
11+
812

913
class ImageComparisonFailure(AssertionError):
10-
'''Raise this exception to mark a test as a comparison between two images.'''
14+
"""
15+
Raise this exception to mark a test as a comparison between two images.
16+
"""

0 commit comments

Comments
 (0)