Fix typings on config modules

This commit is contained in:
Claudio Ortolina
2024-12-11 23:53:29 +03:00
parent 21439a580f
commit 3409ba6d6b
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ defmodule LastFm.Config do
)
@doc NimbleOptions.docs(@schema)
@spec resolve(atom) :: t
@spec resolve(atom) :: t | no_return
def resolve(otp_app) do
app_config =
Application.get_env(otp_app, LastFm)
+1 -1
View File
@@ -20,7 +20,7 @@ defmodule MusicBrainz.Config do
)
@doc NimbleOptions.docs(@schema)
@spec resolve(atom) :: t
@spec resolve(atom) :: t | no_return
def resolve(otp_app) do
app_config =
Application.get_env(otp_app, MusicBrainz)