Skip to content

Commit

Permalink
[black-command] fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-bot committed Jul 27, 2020
1 parent e4d392a commit ba899c9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion yt/convenience.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ def _sanitize_load_args(*args):
except AttributeError:
path_types = (str,)

return [ os.path.expanduser(arg) if isinstance(arg, path_types) else arg for arg in args ]
return [
os.path.expanduser(arg) if isinstance(arg, path_types) else arg for arg in args
]


def load(*args, **kwargs):
Expand Down

0 comments on commit ba899c9

Please sign in to comment.