poke-cli
poke-cli copied to clipboard
A hybrid CLI/TUI tool written in Go for viewing Pokémon data from the terminal!
This flag added to the `move` command will allow the user to list out all Pokémon that learn the chosen move.
The code is concatenating the effect text directly into the format string. When the text contains a % symbol, fmt.Sprintf interprets it as a format verb, causingae %!c(MISSING)error.
When a user selects to view an image with the `card` command, there is no indication as to what's happening when the image is downloading in the background. A BubbleTea...