Skip to content

Commit 242be79

Browse files
committed
mix format
1 parent 7329a35 commit 242be79

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

lib/protobuf/protoc/cli.ex

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ defmodule Protobuf.Protoc.CLI do
3131
:io.setopts(:standard_io, encoding: :latin1)
3232
bin = IO.binread(:all)
3333
request = Protobuf.Decoder.decode(bin, Google.Protobuf.Compiler.CodeGeneratorRequest)
34+
3435
# debug
3536
# raise inspect(request, limit: :infinity)
3637

test/protobuf/dsl_test.exs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ defmodule Protobuf.DSLTest do
2121
msg_props = Foo.__message_props__()
2222

2323
tags_map =
24-
Enum.reduce([1, 2, 3] ++ Enum.to_list(5..17) ++ [101], %{}, fn i, acc -> Map.put(acc, i, i) end)
24+
Enum.reduce([1, 2, 3] ++ Enum.to_list(5..17) ++ [101], %{}, fn i, acc ->
25+
Map.put(acc, i, i)
26+
end)
2527

2628
assert tags_map == msg_props.tags_map
2729
field_props = msg_props.field_props

0 commit comments

Comments
 (0)