Skip to content

Commit

Permalink
tox -e black
Browse files Browse the repository at this point in the history
  • Loading branch information
mar10 committed Mar 10, 2019
1 parent e7b7a2e commit 689e394
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ftpsync/ftp_target.py
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ def get_dir(self):

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

Expand Down Expand Up @@ -463,7 +463,7 @@ def _addline(line):
u_name = name

name = u_name

# For Python 3 we want to work with `str` as well
name = compat.to_native(name)
data = compat.to_native(data)
Expand Down

0 comments on commit 689e394

Please sign in to comment.