summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Vézina <ml.richard.vezina@gmail.com>2021-10-15 21:42:34 -0400
committerRichard Vézina <ml.richard.vezina@gmail.com>2021-10-15 21:42:34 -0400
commit78a36f742afd89ee48f4fb7d28f1b97d7cec1a8f (patch)
tree11f6183579a1649f8e6fa62f93a99616f42ba16a
parentd590e3cc10e5b726cdf1eeb03340eb7301ac5654 (diff)
downloadtftpy-78a36f742afd89ee48f4fb7d28f1b97d7cec1a8f.tar.gz
Enhance PEP8
-rw-r--r--tftpy/TftpClient.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tftpy/TftpClient.py b/tftpy/TftpClient.py
index 8b215a3..6ef3578 100644
--- a/tftpy/TftpClient.py
+++ b/tftpy/TftpClient.py
@@ -13,12 +13,13 @@ from .TftpContexts import TftpContextClientDownload, TftpContextClientUpload
log = logging.getLogger('tftpy.TftpClient')
+
class TftpClient(TftpSession):
"""This class is an implementation of a tftp client. Once instantiated, a
download can be initiated via the download() method, or an upload via the
upload() method."""
- def __init__(self, host, port=69, options={}, localip = ""):
+ def __init__(self, host, port=69, options={}, localip=""):
TftpSession.__init__(self)
self.context = None
self.host = host