Skip to content

Commit

Permalink
Fix line length
Browse files Browse the repository at this point in the history
  • Loading branch information
bulya committed Oct 2, 2024
1 parent 9c8baea commit 2370cc9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ def compose_down(ctx, volumes=False):

@task()
def pip_compile(ctx):
command = "pip-compile --upgrade --generate-hashes --allow-unsafe -o ./requirements.txt ./requirements.in"
command = (
"pip-compile --upgrade --generate-hashes --allow-unsafe "
"-o ./requirements.txt ./requirements.in"
)
ctx.run(command, pty=True)


Expand Down

0 comments on commit 2370cc9

Please sign in to comment.