mirror of
https://github.com/esphome/esphome.git
synced 2024-12-22 05:24:53 +01:00
Format dev temp idedata (#2142)
This commit is contained in:
parent
f94c221a9a
commit
854f4a8896
1 changed files with 7 additions and 10 deletions
|
@ -113,15 +113,12 @@ def load_idedata(environment):
|
|||
changed = False
|
||||
|
||||
if not changed:
|
||||
text = temp_idedata.read_text()
|
||||
else:
|
||||
stdout = subprocess.check_output(
|
||||
["pio", "run", "-t", "idedata", "-e", environment]
|
||||
)
|
||||
match = re.search(r'{\s*".*}', stdout.decode("utf-8"))
|
||||
text = match.group()
|
||||
return json.loads(temp_idedata.read_text())
|
||||
|
||||
temp_idedata.parent.mkdir(exist_ok=True)
|
||||
temp_idedata.write_text(text)
|
||||
stdout = subprocess.check_output(["pio", "run", "-t", "idedata", "-e", environment])
|
||||
match = re.search(r'{\s*".*}', stdout.decode("utf-8"))
|
||||
data = json.loads(match.group())
|
||||
|
||||
return json.loads(text)
|
||||
temp_idedata.parent.mkdir(exist_ok=True)
|
||||
temp_idedata.write_text(json.dumps(data, indent=2) + "\n")
|
||||
return data
|
||||
|
|
Loading…
Reference in a new issue