We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8956295 commit 0dc16d5Copy full SHA for 0dc16d5
networkmanager/device.py
@@ -7,7 +7,7 @@
7
from util import Enum, Flags
8
from accesspoint import AccessPoint, Mode # for Wireless
9
10
-class Ip4Address:
+class Ip4Address(object):
11
def __init__(self, int32):
12
self.a = int32
13
def __str__(self):
networkmanager/util.py
@@ -1,4 +1,4 @@
1
-class NamedNumbers:
+class NamedNumbers(object):
2
"""Base for Enum and Flags."""
3
4
def __init__(self, value):
0 commit comments