Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
danangmassandy committed Oct 7, 2024
1 parent e4a19fd commit 02d726c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_project/core/middleware/ephemeral.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

def du(paths):
"""disk usage for each path"""
cmd = ['du','-sc']
cmd = ['du', '-sc']
cmd.extend(paths)
bytes_arr = subprocess.check_output(cmd).splitlines()
return [b.decode('utf-8') for b in bytes_arr]
Expand Down

0 comments on commit 02d726c

Please sign in to comment.