Commit 304694df authored by Chinmay Garde's avatar Chinmay Garde

Merge pull request #2082 from chinmaygarde/lint_fix

Fix linter error regarding extra braces in string interpolation in devices.dart
parents 6ab25977 d299b05a
......@@ -31,7 +31,7 @@ class DevicesCommand extends FlutterCommand {
for (Device device in devices) {
String supportIndicator = device.isSupported() ? '' : '- unsupported';
printStatus('${device.name} (${device.id}) ${supportIndicator}');
printStatus('${device.name} (${device.id}) $supportIndicator');
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment