about summary refs log tree commit diff
path: root/examples/python/gi/device-state-ip4config.py
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2020-06-28 18:58:14 +0200
committerMichael Biebl <biebl@debian.org>2020-06-28 18:58:14 +0200
commita54ac63bbf9b2c71026ac9028a8ffaf186cf3c82 (patch)
tree6a32883bd916c4096357b35298beff6db8bcd0b5 /examples/python/gi/device-state-ip4config.py
parent45e8e1149027529194982212c804c0468aa01d98 (diff)
New upstream version 1.25.90 upstream/1.25.90
Diffstat (limited to 'examples/python/gi/device-state-ip4config.py')
-rwxr-xr-xexamples/python/gi/device-state-ip4config.py14
1 files changed, 8 insertions, 6 deletions
diff --git a/examples/python/gi/device-state-ip4config.py b/examples/python/gi/device-state-ip4config.py
index 18848d07..038b8a72 100755
--- a/examples/python/gi/device-state-ip4config.py
+++ b/examples/python/gi/device-state-ip4config.py
@@ -6,7 +6,8 @@
 
 import sys
 import gi
-gi.require_version('NM', '1.0')
+
+gi.require_version("NM", "1.0")
 from gi.repository import GLib, NM
 
 #
@@ -18,6 +19,7 @@ from gi.repository import GLib, NM
 
 main_loop = None
 
+
 def do_notify(self, property):
     print("notify: %s" % property)
     ip4cfg = self.get_ip4_config()
@@ -25,26 +27,26 @@ def do_notify(self, property):
         print("ip4-config: %s" % ip4cfg.get_path())
         main_loop.quit()
 
+
 def state_changed(obj, arg1, arg2, arg3):
     print("State changed: New: %d, Old: %d, Reason: %d" % (arg1, arg2, arg3))
     # Device is connected
     if arg1 == 100:
-        obj.connect('notify::ip4-config', do_notify)
+        obj.connect("notify::ip4-config", do_notify)
 
 
 if __name__ == "__main__":
     if len(sys.argv) != 2:
-        sys.exit('Usage: %s <interface>' % sys.argv[0])
+        sys.exit("Usage: %s <interface>" % sys.argv[0])
     dev_iface = sys.argv[1]
 
     c = NM.Client.new(None)
     dev = c.get_device_by_iface(dev_iface)
     if dev is None:
-        sys.exit('Device \'%s\' not found' % dev_iface)
+        sys.exit("Device '%s' not found" % dev_iface)
     print("Device: %s - %s" % (dev_iface, dev.get_device_type().value_name))
     print("---------------------------------------")
 
-    dev.connect('state-changed', state_changed)
+    dev.connect("state-changed", state_changed)
     main_loop = GLib.MainLoop()
     main_loop.run()
-