From 8b8a6d881cbda0e6d64aacf5284fbccf27772eec Mon Sep 17 00:00:00 2001 From: louisparis <48298425+louisparis@users.noreply.github.com> Date: Wed, 27 Mar 2019 19:46:46 +0200 Subject: [PATCH] reduce indentation (#741) --- file_transfer_protocol/ftp_send_receive.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/file_transfer_protocol/ftp_send_receive.py b/file_transfer_protocol/ftp_send_receive.py index 6050c83f2253..6a9819ef3f21 100644 --- a/file_transfer_protocol/ftp_send_receive.py +++ b/file_transfer_protocol/ftp_send_receive.py @@ -1,11 +1,11 @@ """ - File transfer protocol used to send and receive files using FTP server. - Use credentials to provide access to the FTP client +File transfer protocol used to send and receive files using FTP server. +Use credentials to provide access to the FTP client - Note: Do not use root username & password for security reasons - Create a seperate user and provide access to a home directory of the user - Use login id and password of the user created - cwd here stands for current working directory +Note: Do not use root username & password for security reasons +Create a seperate user and provide access to a home directory of the user +Use login id and password of the user created +cwd here stands for current working directory """ from ftplib import FTP @@ -14,8 +14,8 @@ ftp.cwd('/Enter the directory here/') """ - The file which will be received via the FTP server - Enter the location of the file where the file is received +The file which will be received via the FTP server +Enter the location of the file where the file is received """ def ReceiveFile(): @@ -25,8 +25,8 @@ def ReceiveFile(): ftp.quit() """ - The file which will be sent via the FTP server - The file send will be send to the current working directory +The file which will be sent via the FTP server +The file send will be send to the current working directory """ def SendFile():