mirror of
https://github.com/mewtek/i2ME-Legacy.git
synced 2025-05-11 00:57:31 -05:00
getData() not awaited in CO and DF records.
This commit is contained in:
parent
e557ebcacb
commit
73dbba3a65
@ -63,7 +63,7 @@ async def makeDataFile():
|
||||
await doc.write(header)
|
||||
|
||||
for x, y in zip(tecciId, zipCodes):
|
||||
getData(x, y)
|
||||
await getData(x, y)
|
||||
|
||||
async with aiofiles.open("./.temp/CurrentObservations.i2m", 'a') as end:
|
||||
await end.write(footer)
|
||||
|
@ -61,7 +61,7 @@ async def makeDataFile():
|
||||
await doc.write(header)
|
||||
|
||||
for x, y in zip(tecciId, zipCodes):
|
||||
getData(x, y)
|
||||
await getData(x, y)
|
||||
|
||||
async with open("./.temp/DailyForecast.i2m", 'a') as end:
|
||||
await end.write(footer)
|
||||
|
Loading…
x
Reference in New Issue
Block a user