Remove Unnecessary Comments

This commit is contained in:
CooperWang0912 2026-07-24 14:18:11 +08:00
parent b5af3a1054
commit be1228a73b
1 changed files with 0 additions and 2 deletions

View File

@ -81,7 +81,6 @@ class GlobalMenu(AbstractMenu[None]):
return '[bold green][✓][/bold green] '
return '[bold red][!][/bold red] '
# Standard mandatory or configured item check
if item.has_value():
return '[bold green][✓][/bold green] '
elif item.mandatory:
@ -113,7 +112,6 @@ class GlobalMenu(AbstractMenu[None]):
if inspect.isawaitable(result):
result = await result
# Directly update the item's value
item.value = result
return result