Get rid of Python 2 specific compatibility leftovers

Change-Id: I0068caa775d89349db2ad378fad22e89832b8d20
This commit is contained in:
Vadim Yanitskiy
2021-03-11 22:59:21 +01:00
parent 5452d64120
commit 3e58d38bdf
4 changed files with 0 additions and 14 deletions

View File

@@ -21,14 +21,6 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
from __future__ import absolute_import
try:
# This is for compatibility with python 2 and 3
from exceptions import Exception
except:
pass
class NoCardError(Exception):
pass