We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 138daf0 commit e2f81c1Copy full SHA for e2f81c1
src/commands/daily.py
@@ -15,7 +15,6 @@ def daily(
15
"""
16
from .show import show
17
18
- typer.echo(typer.style("Welcome to LeetCode Daily!", fg=typer.colors.GREEN))
19
if editor not in ['code', 'vim', 'nano']:
20
typer.echo(typer.style(f"❌ Unsupported editor: {editor}", fg=typer.colors.RED))
21
raise typer.Exit(1)
@@ -29,7 +28,7 @@ def daily(
29
28
typer.echo("\n" + typer.style(f"❌ Failed to fetch daily question: {str(e)}", fg=typer.colors.RED))
30
31
32
- show(problem=question['question']['titleSlug'], layout=True)
+ show(problem=question['question']['titleSlug'])
33
34
if not no_editor and editor:
35
try:
0 commit comments