From cb4c0cf1e8e8e4cf989bf2d50eccab55683f1211 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sun, 4 Feb 2024 21:51:45 +0100 Subject: [PATCH] pylint: exceptions.py pySim/exceptions.py:27:4: W0107: Unnecessary pass statement (unnecessary-pass) pySim/exceptions.py:32:4: W0107: Unnecessary pass statement (unnecessary-pass) pySim/exceptions.py:37:4: W0107: Unnecessary pass statement (unnecessary-pass) Change-Id: Ibd0725ceb5fdcdc0995c39a4449ada2fd6088552 --- pySim/exceptions.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/pySim/exceptions.py b/pySim/exceptions.py index c6a81a13..f726aa66 100644 --- a/pySim/exceptions.py +++ b/pySim/exceptions.py @@ -24,17 +24,14 @@ class NoCardError(Exception): """No card was found in the reader.""" - pass class ProtocolError(Exception): """Some kind of protocol level error interfacing with the card.""" - pass class ReaderError(Exception): """Some kind of general error with the card reader.""" - pass class SwMatchError(Exception):