diff options
author | Louis <6653109+artonge@users.noreply.github.com> | 2022-01-12 15:48:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-12 15:48:36 +0100 |
commit | 2e1491771e47eb02d297215eba6e6ce0019fc9c1 (patch) | |
tree | f327c9ae125cbddd86a1da588b3562d08b3bbe65 /apps/weather_status | |
parent | db9fbc93072049b8816a683ca015ba53976db03a (diff) | |
parent | bfdfafde79a17b1683467c800cf2a63ba14fb1a0 (diff) | |
download | nextcloud-server-2e1491771e47eb02d297215eba6e6ce0019fc9c1.tar.gz nextcloud-server-2e1491771e47eb02d297215eba6e6ce0019fc9c1.zip |
Merge pull request #30572 from nextcloud/fix/lint_warnings
Fix lint warnings
Diffstat (limited to 'apps/weather_status')
-rw-r--r-- | apps/weather_status/src/services/weatherStatusService.js | 4 | ||||
-rw-r--r-- | apps/weather_status/src/weather-status.js | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/apps/weather_status/src/services/weatherStatusService.js b/apps/weather_status/src/services/weatherStatusService.js index bf9cc43b090..a32016d1d43 100644 --- a/apps/weather_status/src/services/weatherStatusService.js +++ b/apps/weather_status/src/services/weatherStatusService.js @@ -3,7 +3,7 @@ * * @author Julien Veyssier <eneiluj@posteo.net> * - * @license GNU AGPL version 3 or any later version + * @license AGPL-3.0-or-later * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -97,7 +97,6 @@ const getLocation = async () => { /** * Fetches the weather forecast * - * @param {string} address The location * @return {Promise<object>} */ const fetchForecast = async () => { @@ -110,7 +109,6 @@ const fetchForecast = async () => { /** * Fetches the location favorites * - * @param {string} address The location * @return {Promise<object>} */ const getFavorites = async () => { diff --git a/apps/weather_status/src/weather-status.js b/apps/weather_status/src/weather-status.js index 4b8b2ab79a4..4450e70940e 100644 --- a/apps/weather_status/src/weather-status.js +++ b/apps/weather_status/src/weather-status.js @@ -3,7 +3,7 @@ * * @author Julien Veyssier <eneiluj@posteo.net> * - * @license GNU AGPL version 3 or any later version + * @license AGPL-3.0-or-later * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as |