Skip to content

Commit

Permalink
Clean up logs
Browse files Browse the repository at this point in the history
  • Loading branch information
collindutter committed Aug 20, 2024
1 parent 939f22a commit ee480b6
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions griptapecli/core/skatepark.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def build_structure(structure_id: str) -> Structure:
["python3", "-m", "venv", ".venv"],
cwd=structure.directory,
)
result = subprocess.run(
subprocess.run(
[
".venv/bin/pip3",
"install",
Expand All @@ -120,11 +120,8 @@ def build_structure(structure_id: str) -> Structure:
),
],
cwd=structure.directory,
text=True,
)

logger.info(result.stdout)

return structure


Expand Down

0 comments on commit ee480b6

Please sign in to comment.