Remove Unnecessary F-strings

This commit is contained in:
pixeebot[bot]
2024-04-15 15:31:05 +00:00
committed by GitHub
parent 4162f8e380
commit b526d48dbd
4 changed files with 14 additions and 14 deletions

View File

@@ -58,7 +58,7 @@ class WeatherPlugin(Plugin):
]
async def execute(self, function_name, helper, **kwargs) -> Dict:
url = f'https://api.open-meteo.com/v1/forecast' \
url = 'https://api.open-meteo.com/v1/forecast' \
f'?latitude={kwargs["latitude"]}' \
f'&longitude={kwargs["longitude"]}' \
f'&temperature_unit={kwargs["unit"]}'