Skip to content

Commit

Permalink
fix: args
Browse files Browse the repository at this point in the history
  • Loading branch information
ligeng1 committed Feb 20, 2024
1 parent b3d5226 commit 7bd94a0
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions rclone_python/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,13 @@


def args2string(args: List[str]) -> str:
# separate flags/ named arguments by a space
return " ".join(args)
out = ""

for item in args:
# separate flags/ named arguments by a space
out += f" {item}"

return out


def run_cmd(
Expand Down

0 comments on commit 7bd94a0

Please sign in to comment.