(config unlinkConfig, linkedTarget string)
| 224 | } |
| 225 | |
| 226 | func printResults(config unlinkConfig, linkedTarget string) error { |
| 227 | if !config.io.IsStdoutTTY() { |
| 228 | return nil |
| 229 | } |
| 230 | |
| 231 | _, err := fmt.Fprintf(config.io.Out, "Unlinked '%s/%s' from project #%d '%s'\n", config.opts.owner, linkedTarget, config.opts.number, config.opts.projectTitle) |
| 232 | return err |
| 233 | } |
no test coverage detected