diff options
Diffstat (limited to 'examples/sms-python')
-rwxr-xr-x | examples/sms-python/sms-python | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/examples/sms-python/sms-python b/examples/sms-python/sms-python index 2d572f18..569db376 100755 --- a/examples/sms-python/sms-python +++ b/examples/sms-python/sms-python @@ -18,10 +18,12 @@ # Copyright (C) 2016 Aleksander Morgado <aleksander@aleksander.es> # -import sys, signal, gi +import sys +import gi gi.require_version('ModemManager', '1.0') -from gi.repository import GLib, GObject, Gio, ModemManager +from gi.repository import Gio, GLib, GObject, ModemManager + if __name__ == "__main__": |