Skip to content

Commit

Permalink
Remove trailing whitespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
kirkrodrigues committed Jul 29, 2024
1 parent 4550daa commit 3acb70b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,10 @@ def chown_recursively(
):
"""
Recursively changes the owner of the given path to the given user ID and group ID.
:param path:
:param user_id:
:param group_id:
"""
:param path:
:param user_id:
:param group_id:
"""
chown_cmd = ["chown", "--recursive", f"{user_id}:{group_id}", str(path)]
subprocess.run(chown_cmd, stdout=subprocess.DEVNULL, check=True)

Expand Down

0 comments on commit 3acb70b

Please sign in to comment.