From 1b895d98c071c853beb0ad28e1a577247dfada70 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Thu, 17 Jun 2021 15:09:48 +0200 Subject: [PATCH] example: drop unused import from "nm-up-many.py" lgtm.com complains about this. Avoid the warning. --- examples/python/gi/nm-up-many.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/python/gi/nm-up-many.py b/examples/python/gi/nm-up-many.py index 9fd86631bb..52f981d779 100755 --- a/examples/python/gi/nm-up-many.py +++ b/examples/python/gi/nm-up-many.py @@ -10,12 +10,11 @@ # the application is running (from the main function). import sys -import os import gi import time gi.require_version("NM", "1.0") -from gi.repository import NM, GLib, Gio +from gi.repository import NM, GLib start_time = time.monotonic()