Fix typing for config modules

This commit is contained in:
Claudio Ortolina
2025-01-03 18:52:43 +00:00
parent 7cd1e8e944
commit 16e8282891
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
defmodule LastFm.Config do
@type t :: %{
@type t :: %__MODULE__{
api: module(),
api_key: String.t(),
user: String.t(),
+1 -1
View File
@@ -1,5 +1,5 @@
defmodule MusicBrainz.Config do
@type t :: %{
@type t :: %__MODULE__{
api: module(),
user_agent: String.t()
}