[core] Fix `config_dir` for dashboard (#8242)

This commit is contained in:
Jesse Hills 2025-02-13 15:57:57 +13:00 committed by GitHub
parent 4a95468fd2
commit 72f6461871
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -582,7 +582,7 @@ class EsphomeCore:
@property
def config_dir(self):
return os.path.dirname(os.path.abspath(self.config_path))
return os.path.abspath(os.path.dirname(self.config_path))
@property
def data_dir(self):