mirror of
https://github.com/esphome/esphome.git
synced 2024-11-14 02:58:11 +01:00
69879920eb
* Add black Update pre commit Update pre commit add empty line * Format with black
25 lines
576 B
Python
25 lines
576 B
Python
import json
|
|
import os
|
|
|
|
from esphome.core import CORE
|
|
from esphome.helpers import read_file
|
|
|
|
|
|
def read_config_file(path):
|
|
# type: (str) -> str
|
|
if CORE.vscode and (
|
|
not CORE.ace or os.path.abspath(path) == os.path.abspath(CORE.config_path)
|
|
):
|
|
print(
|
|
json.dumps(
|
|
{
|
|
"type": "read_file",
|
|
"path": path,
|
|
}
|
|
)
|
|
)
|
|
data = json.loads(input())
|
|
assert data["type"] == "file_response"
|
|
return data["content"]
|
|
|
|
return read_file(path)
|