diff --git a/server/handlers.go b/server/handlers.go
index 854fe075ba3590ec078ee912eaf9a85bec36c27a..ef835da62534fe856daf9300a801c74108777997 100644
--- a/server/handlers.go
+++ b/server/handlers.go
@@ -2,8 +2,8 @@ package server
 
 import (
 	"context"
-	"encoding/json"
 	"encoding/base64"
+	"encoding/json"
 	"errors"
 	"fmt"
 	"net/http"
@@ -567,7 +567,7 @@ func (s *Server) sendCodeResponse(w http.ResponseWriter, r *http.Request, authRe
 		idTokenExpiry time.Time
 
 		// Access token
-		accessToken   string
+		accessToken string
 	)
 
 	for _, responseType := range authReq.ResponseTypes {
@@ -1079,7 +1079,7 @@ func (s *Server) handleUserInfo(w http.ResponseWriter, r *http.Request) {
 
 	w.Header().Set("Content-Type", "application/json")
 	w.Write(verified)
-	}
+}
 
 func (s *Server) verify(token string) ([]byte, error) {
 	keys, err := s.storage.GetKeys()