Skip to content
This repository was archived by the owner on Nov 1, 2024. It is now read-only.

Commit e56b217

Browse files
authored
Fix latest lints (#58)
1 parent 9249fdf commit e56b217

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/cli_logging.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ class AnsiProgress extends Progress {
207207
});
208208

209209
AnsiProgress(this.ansi, String message) : super(message) {
210-
io.stdout.write('${message}... '.padRight(40));
210+
io.stdout.write('$message... '.padRight(40));
211211
_updateDisplay();
212212
}
213213

@@ -236,7 +236,7 @@ class AnsiProgress extends Progress {
236236
if (isFinal || cancelled) {
237237
char = '';
238238
}
239-
io.stdout.write('${ansi.backspace}${char}');
239+
io.stdout.write('${ansi.backspace}$char');
240240
if (isFinal || cancelled) {
241241
if (message != null) {
242242
io.stdout.write(message.isEmpty ? ' ' : message);

0 commit comments

Comments
 (0)