Commit d299b05a authored by Chinmay Garde's avatar Chinmay Garde

Fix linter error regarding extra braces in string interpolation in devices.dart

parent 6ab25977
......@@ -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