From 4f883adf314bc38e8cfeaea4c03b976edb1605dd Mon Sep 17 00:00:00 2001 From: bartvaneswhiffle <129189801+bartvaneswhiffle@users.noreply.github.com> Date: Tue, 13 Aug 2024 15:18:47 +0200 Subject: [PATCH] Remove print statement (#1661) --- fsspec/implementations/ftp.py | 1 - 1 file changed, 1 deletion(-) diff --git a/fsspec/implementations/ftp.py b/fsspec/implementations/ftp.py index e56edd2ba..f3471b996 100644 --- a/fsspec/implementations/ftp.py +++ b/fsspec/implementations/ftp.py @@ -65,7 +65,6 @@ def __init__( self.port = port self.tempdir = tempdir or "/tmp" self.cred = username or "", password or "", acct or "" - print(self.cred) self.timeout = timeout self.encoding = encoding if block_size is not None: