Skip to content

Commit cc55b0c

Browse files
committed
format generated files
1 parent 7f74f4a commit cc55b0c

63 files changed

Lines changed: 493 additions & 417 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

samples/client/petstore/elixir/lib/openapi_petstore/api/another_fake.ex

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,11 @@ defmodule OpenapiPetstore.Api.AnotherFake do
2424
- `{:ok, OpenapiPetstore.Model.Client.t}` on success
2525
- `{:error, Tesla.Env.t}` on failure
2626
"""
27-
@spec call_123_test_special_tags(Tesla.Env.client, OpenapiPetstore.Model.Client.t, keyword()) :: {:ok, OpenapiPetstore.Model.Client.t} | {:error, Tesla.Env.t}
27+
@spec call_123_test_special_tags(
28+
Tesla.Env.client(),
29+
OpenapiPetstore.Model.Client.t(),
30+
keyword()
31+
) :: {:ok, OpenapiPetstore.Model.Client.t()} | {:error, Tesla.Env.t()}
2832
def call_123_test_special_tags(connection, client, _opts \\ []) do
2933
request =
3034
%{}

samples/client/petstore/elixir/lib/openapi_petstore/api/default.ex

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ defmodule OpenapiPetstore.Api.Default do
2121
- `{:ok, OpenapiPetstore.Model.FooGetDefaultResponse.t}` on success
2222
- `{:error, Tesla.Env.t}` on failure
2323
"""
24-
@spec foo_get(Tesla.Env.client, keyword()) :: {:ok, OpenapiPetstore.Model.FooGetDefaultResponse.t} | {:error, Tesla.Env.t}
24+
@spec foo_get(Tesla.Env.client(), keyword()) ::
25+
{:ok, OpenapiPetstore.Model.FooGetDefaultResponse.t()} | {:error, Tesla.Env.t()}
2526
def foo_get(connection, _opts \\ []) do
2627
request =
2728
%{}

0 commit comments

Comments
 (0)