diff options
Diffstat (limited to 'lib/config.ml')
-rw-r--r-- | lib/config.ml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/config.ml b/lib/config.ml index 540a5d0..7e037ef 100644 --- a/lib/config.ml +++ b/lib/config.ml @@ -69,5 +69,4 @@ let read_file ?(file = config_file) () = prerr_endline "[config.ml] Falling back to default config."; Ok default -let config = - match read_file ~file:config_file () with Ok cfg -> cfg | Error _ -> default +let config = match read_file () with Ok cfg -> cfg | Error _ -> default |