Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan M. Taylor <dylan@dylanmtaylor.com>2021-05-18 08:27:59 -0400
committerGitHub <noreply@github.com>2021-05-18 08:27:59 -0400
commitc14ee42bff34f6fe638fc9b045d8b2dd3fb9f560 (patch)
tree5acce665831e1b917333988b0abf3284f959493e
parentf56bfd5ab8a80a218e931b2124ccd9974517bf04 (diff)
Remove PermissionError since it shadows the built-in of the same name
-rw-r--r--archinstall/lib/exceptions.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/archinstall/lib/exceptions.py b/archinstall/lib/exceptions.py
index 6837f582..147b239b 100644
--- a/archinstall/lib/exceptions.py
+++ b/archinstall/lib/exceptions.py
@@ -29,10 +29,6 @@ class HardwareIncompatibilityError(BaseException):
pass
-class PermissionError(BaseException):
- pass
-
-
class UserError(BaseException):
pass