summaryrefslogtreecommitdiff
path: root/tftpy/TftpClient.py
diff options
context:
space:
mode:
authorMichael P. Soulier <msoulier@digitaltorque.ca>2011-07-23 23:28:45 -0400
committerMichael P. Soulier <msoulier@digitaltorque.ca>2011-07-23 23:28:45 -0400
commit40977c6f74496be16087767b8444af2b34f933d5 (patch)
tree153083c6bf2975e51f41fc5548d8297c32958404 /tftpy/TftpClient.py
parentadd444006ca53d1469ef4f333e9bbbaea05a8ac1 (diff)
downloadtftpy-40977c6f74496be16087767b8444af2b34f933d5.tar.gz
Fixing some pyflakes complaints
Diffstat (limited to 'tftpy/TftpClient.py')
-rw-r--r--tftpy/TftpClient.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tftpy/TftpClient.py b/tftpy/TftpClient.py
index b8cfa34..16753f1 100644
--- a/tftpy/TftpClient.py
+++ b/tftpy/TftpClient.py
@@ -2,10 +2,9 @@
instance of the client, and then use its upload or download method. Logging is
performed via a standard logging object set in TftpShared."""
-import time, types
+import types
from TftpShared import *
from TftpPacketTypes import *
-from TftpPacketFactory import TftpPacketFactory
from TftpContexts import TftpContextClientDownload, TftpContextClientUpload
class TftpClient(TftpSession):