diff options
| author | jvoisin | 2015-07-25 17:14:23 +0200 |
|---|---|---|
| committer | jvoisin | 2015-07-25 17:14:23 +0200 |
| commit | 6ba3e3f20d7d52895bc44f9fc35b068cfce47133 (patch) | |
| tree | 15df2aca17d56d941c6376ef729e0c1fea4c396f /libmat/exceptions.py | |
| parent | 85e6279d16af063e5150c7cf4bd491185b8ae788 (diff) | |
_MASSIVE_ pep8 revamp
Thank you so much PyCharm
Diffstat (limited to 'libmat/exceptions.py')
| -rw-r--r-- | libmat/exceptions.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libmat/exceptions.py b/libmat/exceptions.py index 47da15c..e71c398 100644 --- a/libmat/exceptions.py +++ b/libmat/exceptions.py | |||
| @@ -1,14 +1,14 @@ | |||
| 1 | ''' Base exceptions for MAT | 1 | """ Base exceptions for MAT |
| 2 | ''' | 2 | """ |
| 3 | 3 | ||
| 4 | 4 | ||
| 5 | class UnableToRemoveFile(Exception): | 5 | class UnableToRemoveFile(Exception): |
| 6 | '''This exception is raised when a file could not be removed | 6 | """This exception is raised when a file could not be removed |
| 7 | ''' | 7 | """ |
| 8 | pass | 8 | pass |
| 9 | 9 | ||
| 10 | class UnableToWriteFile(Exception): | 10 | class UnableToWriteFile(Exception): |
| 11 | '''This exception is raised when a file | 11 | """This exception is raised when a file |
| 12 | can could not be chmod +w | 12 | can could not be chmod +w |
| 13 | ''' | 13 | """ |
| 14 | pass | 14 | pass |
