Skip to content

Commit 32a2ce2

Browse files
committed
fmt
1 parent 233543c commit 32a2ce2

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

lib/common.ml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,9 @@ module Stringtbl = struct
1616
type 'a t = 'a Hashtbl.M(String).t
1717

1818
let empty () = Hashtbl.create (module String)
19-
2019
let to_list (l : 'a t) : (string * 'a) list = Hashtbl.to_alist l
21-
2220
let of_list (m : (string * 'a) list) : 'a t = Hashtbl.of_alist_exn (module String) m
23-
2421
let wrap = of_list
25-
2622
let unwrap = to_list
2723
end
2824

lib/state.ml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,7 @@ let set_repo_pipeline_status { state; lock } repo_url ~pipeline ~(branches : Git
3535
Lwt.return_unit
3636

3737
let set_bot_user_id { state; _ } user_id = state.State_t.bot_user_id <- Some user_id
38-
3938
let get_bot_user_id { state; _ } = state.State_t.bot_user_id
40-
4139
let log = Log.from "state"
4240

4341
let save { state; _ } path =

0 commit comments

Comments
 (0)