Py2 -> Py3: do not inherit classes from object

https://stackoverflow.com/questions/4015417/why-do-python-classes-inherit-object/45062077

Change-Id: I15003ba591510d68f3235f71526ad5d8a456088e
diff --git a/pySim/cards.py b/pySim/cards.py
index 18e4ef3..55965d7 100644
--- a/pySim/cards.py
+++ b/pySim/cards.py
@@ -52,7 +52,7 @@
     return res
 
 
-class SimCard(object):
+class SimCard:
 
     name = 'SIM'