diff options
author | Marek Siarkowicz <mareksiarkowicz@gmail.com> | 2015-06-12 13:45:42 +0200 |
---|---|---|
committer | Marek Siarkowicz <mareksiarkowicz@gmail.com> | 2015-06-12 13:47:21 +0200 |
commit | c6442c2eb44c38d6cbe64f8ebe7b4132c70a6326 (patch) | |
tree | 94f56c3e6addc4129e4085e4a1b63a22c79ab178 | |
parent | b3912b7c65288aeb5324131cb20b83e9b0bca513 (diff) | |
download | pyParrotZikTCP-c6442c2eb44c38d6cbe64f8ebe7b4132c70a6326.tar.xz pyParrotZikTCP-c6442c2eb44c38d6cbe64f8ebe7b4132c70a6326.zip |
Remove unused imports.
Diffstat (limited to '')
-rw-r--r-- | ParrotZik.py | 1 | ||||
-rwxr-xr-x | ParrotZikTray | 3 | ||||
-rw-r--r-- | StatusAppMac.py | 2 | ||||
-rw-r--r-- | SysIndicator.py | 2 |
4 files changed, 0 insertions, 8 deletions
diff --git a/ParrotZik.py b/ParrotZik.py index 200126e..f7db9f2 100644 --- a/ParrotZik.py +++ b/ParrotZik.py @@ -5,7 +5,6 @@ else: import bluetooth import ParrotProtocol -import struct from BeautifulSoup import BeautifulSoup class ParrotZik(object): diff --git a/ParrotZikTray b/ParrotZikTray index 57464a7..9d392a3 100755 --- a/ParrotZikTray +++ b/ParrotZikTray @@ -1,9 +1,6 @@ #!/usr/bin/env python -import sys -import gtk import re -import os import ParrotZik import BluetoothPairedDevices from SysIndicator import * diff --git a/StatusAppMac.py b/StatusAppMac.py index 109532f..9ecd528 100644 --- a/StatusAppMac.py +++ b/StatusAppMac.py @@ -1,7 +1,5 @@ -import objc from Foundation import * from AppKit import * -from PyObjCTools import AppHelper class StatusApp(NSApplication): diff --git a/SysIndicator.py b/SysIndicator.py index 1b344c8..145f0bd 100644 --- a/SysIndicator.py +++ b/SysIndicator.py @@ -1,14 +1,12 @@ #!/usr/bin/env python import sys -import re import os import tempfile if sys.platform=="linux2" or sys.platform=="win32": import gtk elif sys.platform=="darwin": - import objc from Foundation import * from AppKit import * from PyObjCTools import AppHelper |