Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Apr 11, 2024
1 parent a39440a commit 6bf015b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manim/utils/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

def capture(command, cwd=None, command_input=None):
p = run(command, cwd=cwd, input=command_input, capture_output=True)
out, err = p.stdout.decode('utf-8'), p.stderr.decode('utf-8')
out, err = p.stdout.decode("utf-8"), p.stderr.decode("utf-8")
return out, err, p.returncode


Expand Down

0 comments on commit 6bf015b

Please sign in to comment.