mirror of
https://github.com/mewtek/i2ME-Legacy.git
synced 2025-06-10 05:30:00 -05:00
Use aiofiles instead of stock open()
This commit is contained in:
@ -63,7 +63,7 @@ async def makeDataFile():
|
||||
for x, y in zip(tecciId, zipCodes):
|
||||
await getData(x, y)
|
||||
|
||||
async with open("./.temp/DailyForecast.i2m", 'a') as end:
|
||||
async with aiofiles.open("./.temp/DailyForecast.i2m", 'a') as end:
|
||||
await end.write(footer)
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user