Skip to content

Commit 689e394

Browse files
committed
tox -e black
1 parent e7b7a2e commit 689e394

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ftpsync/ftp_target.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ def get_dir(self):
433433

434434
def _addline(line):
435435
# ftp_retrlines_binary() made sure that we always get binary lines,
436-
# even on Python 3. This allows us to do our own decoding with
436+
# even on Python 3. This allows us to do our own decoding with
437437
# optional fall back.
438438
assert compat.is_bytes(line)
439439

@@ -463,7 +463,7 @@ def _addline(line):
463463
u_name = name
464464

465465
name = u_name
466-
466+
467467
# For Python 3 we want to work with `str` as well
468468
name = compat.to_native(name)
469469
data = compat.to_native(data)

0 commit comments

Comments
 (0)