Skip to content

Commit

Permalink
fix print error msg
Browse files Browse the repository at this point in the history
  • Loading branch information
phernandez committed Nov 24, 2024
1 parent d992548 commit 8f0d1d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/basic_factory/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def hello_world(
print("[yellow]⚠️ No GitHub token provided - skipping PR creation[/yellow]")

except Exception as e:
print(f"[red]❌ Error: {str(e)}[/red]", err=True)
print(f"[red]❌ Error: {str(e)}[/red]")
raise typer.Exit(1)


Expand Down

0 comments on commit 8f0d1d5

Please sign in to comment.