Skip to content

Commit

Permalink
comment
Browse files Browse the repository at this point in the history
  • Loading branch information
SirEntropy committed Oct 2, 2024
1 parent 537f6df commit 69a9bd3
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions cased/commands/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ def projects(details=True):
]

if details:
# Create a table to display projects
table = Table(title="Projects Details", box=box.ROUNDED)
table.add_column("ID", style="cyan", no_wrap=True)
table.add_column("Repository", style="magenta")
Expand Down Expand Up @@ -139,7 +138,6 @@ def projects(details=True):
console.print(
"[yellow]No project selected. Please select a project from the list below:[/yellow]"
)
# Prepare choices for questionary
choices = ["Exit without changing project"]
choices.extend(
[
Expand All @@ -148,7 +146,6 @@ def projects(details=True):
]
)

# Prompt user for selection using questionary
try:
selection = questionary.select(
"Select a project:", choices=choices, style=custom_style
Expand Down

0 comments on commit 69a9bd3

Please sign in to comment.