From 2d8b280ed2c73d65fb905a580e9499bb7f69ff01 Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Mon, 14 Aug 2023 20:48:10 -0400 Subject: Run lint Idk why these missed the linter. Probably packages updated in the nixpkgs version bump. --- Biz/Auth.hs | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'Biz/Auth.hs') diff --git a/Biz/Auth.hs b/Biz/Auth.hs index 14f67ec..9eb81a8 100644 --- a/Biz/Auth.hs +++ b/Biz/Auth.hs @@ -131,7 +131,11 @@ githubOauth (GitHub OAuthArgs {..}) code = (Req.https "github.com" /: "login" /: "oauth" /: "access_token") Req.NoReqBody Req.jsonResponse - <| "client_id" =: clientId - <> "client_secret" =: clientSecret - <> "code" =: code - <> "state" =: clientState + <| "client_id" + =: clientId + <> "client_secret" + =: clientSecret + <> "code" + =: code + <> "state" + =: clientState -- cgit v1.2.3