From 9a592a3e1d67017b634a1d5d59228d53e4e57d5f Mon Sep 17 00:00:00 2001 From: conao3 Date: Sat, 15 Feb 2020 18:09:39 +0900 Subject: [PATCH] remove unneeded progn --- aqi.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aqi.el b/aqi.el index e6f4830..c0d80cf 100644 --- a/aqi.el +++ b/aqi.el @@ -77,9 +77,9 @@ (defun aqi--city-cache-update (city) "Add or update cached data for a given CITY." - (progn (aqi--city-cache-clear city) - (push (cons city (aqi-request city)) - aqi-cached-data))) + (aqi--city-cache-clear city) + (push (cons city (aqi-request city)) + aqi-cached-data)) (defun aqi--city-cache-get (city) "Add or update cached data for a given CITY."