Py2 -> Py3: do not inherit classes from object

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

Change-Id: I15003ba591510d68f3235f71526ad5d8a456088e
This commit is contained in:
Vadim Yanitskiy
2022-07-07 03:05:30 +07:00
parent bda52830c9
commit 04b5d9d7ab
5 changed files with 8 additions and 8 deletions

View File

@@ -52,7 +52,7 @@ def format_addr(addr: str, addr_type: str) -> str:
return res
class SimCard(object):
class SimCard:
name = 'SIM'