[refactor] use let define variables
All checks were successful
/ run-pytest (push) Successful in 1m1s

This commit is contained in:
SouthFox 2024-02-27 00:27:01 +08:00
parent 3994213325
commit d4f49aab4a

View file

@ -8,6 +8,6 @@
(.info logger url)
(return (.json
(with/a [client (.AsyncClient httpx)]
(await (.get client url :headers
{"User-Agent" config.USER_AGENT
"Accept" config.AP_CONTENT_TYPE}))))))
(let [headers {"User-Agent" config.USER_AGENT
"Accept" config.AP_CONTENT_TYPE}]
(await (.get client url :headers headers)))))))