chore(psk): fix dialyzer

This commit is contained in:
zhouzb 2021-09-24 14:26:46 +08:00
parent d391690505
commit 98ecafcceb
1 changed files with 8 additions and 8 deletions

View File

@ -106,13 +106,13 @@ stop() ->
%%-------------------------------------------------------------------- %%--------------------------------------------------------------------
init(_Opts) -> init(_Opts) ->
case get_config(enable) of _ = case get_config(enable) of
true -> load(); true -> load();
false -> ok false -> ok
end, end,
case get_config(init_file) of _ = case get_config(init_file) of
undefined -> ok; undefined -> ok;
BootFile -> import_psks(BootFile) InitFile -> import_psks(InitFile)
end, end,
{ok, #{}}. {ok, #{}}.