Skip to content
Snippets Groups Projects
Commit a92b73e8 authored by Seth Ladd's avatar Seth Ladd
Browse files

fix formating in code

parent 1265779a
No related branches found
No related tags found
No related merge requests found
......@@ -71,11 +71,11 @@ class CliApp {
_out('');
_out('generators\n----------');
int len = generators
.map((g) => g.id.length)
.fold(0, (a, b) => max(a, b));
.map((g) => g.id.length)
.fold(0, (a, b) => max(a, b));
generators
.map((g) => "[${_pad(g.id, len)}] ${g.description}")
.forEach(logger.stdout);
.map((g) => "[${_pad(g.id, len)}] ${g.description}")
.forEach(logger.stdout);
}
Future process(List<String> args) {
......
......@@ -6,6 +6,6 @@ authors:
- Seth Ladd <sethladd@gmail.com>
- Devon Carew <devoncarew@google.com>
dev_dependencies:
args: any
path: any
unittest: any
args: any
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment