Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/model/devices/wirednetwork.py
diff options
context:
space:
mode:
Diffstat (limited to 'shell/model/devices/wirednetwork.py')
-rw-r--r--shell/model/devices/wirednetwork.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/shell/model/devices/wirednetwork.py b/shell/model/devices/wirednetwork.py
new file mode 100644
index 0000000..871a552
--- /dev/null
+++ b/shell/model/devices/wirednetwork.py
@@ -0,0 +1,9 @@
+from model.devices import device
+
+class Device(device.Device):
+ def __init__(self, nm_device):
+ device.Device.__init__(self)
+ self._nm_device = device
+
+ def get_type(self):
+ return 'wirednetwork'