From 77769aa2efbdd1ce7fe469361db46c615ad7a8ef Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Wed, 19 Jan 2022 18:38:05 -0800 Subject: [PATCH] Alphabetize exceptions. --- voussoirkit/pathclass.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/voussoirkit/pathclass.py b/voussoirkit/pathclass.py index 2fa4e20..341bde3 100644 --- a/voussoirkit/pathclass.py +++ b/voussoirkit/pathclass.py @@ -36,12 +36,11 @@ class IsDirectory(PathclassException): class IsLink(PathclassException): pass -class NotExists(PathclassException): - pass - class NotDirectory(PathclassException): pass +class NotExists(PathclassException): + pass class NotFile(PathclassException): pass