Skip to content

Commit

Permalink
CTX-6562: Single quotes -> double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
Bogdan Tintor committed Aug 20, 2024
1 parent d2439d0 commit af13cbd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions coretex/cli/commands/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,10 +183,10 @@ def config(advanced: bool) -> None:
def status() -> None:
nodeStatus = getNodeStatus()
statusColors = {
'inactive': 'red',
'active': 'green',
'busy': 'cyan',
'reconnecting': 'yellow'
"inactive": "red",
"active": 'green',
"busy": "cyan",
"reconnecting": "yellow"
}

statusEcho = click.style(nodeStatus.name, fg = statusColors[nodeStatus.name])
Expand Down

0 comments on commit af13cbd

Please sign in to comment.