From 7c55ee065c0bff25f730043d0d0af384e0d2df0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Tue, 15 Dec 2020 15:53:52 +0100 Subject: [PATCH] Add QubesValueError to mock qubesadmin.exc Will be needed in upcoming changes, to make pylint happy. --- test-packages/qubesadmin/exc.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test-packages/qubesadmin/exc.py b/test-packages/qubesadmin/exc.py index 2f79e31..023ba21 100644 --- a/test-packages/qubesadmin/exc.py +++ b/test-packages/qubesadmin/exc.py @@ -36,3 +36,6 @@ class BackupAlreadyRunningError(BaseException): class QubesDaemonCommunicationError(BaseException): pass + +class QubesValueError(BaseException): + pass