diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2023-06-11 01:34:08 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2023-06-11 01:34:08 +0300 |
commit | ee0341e137f6a8dcf90d5a744e334f66b9d6d60a (patch) | |
tree | 72afde11d78754f3bd3387c869236e5a450feb20 /include/py | |
parent | 6055011d82fe001a8cb88359b322c8a8581cc987 (diff) |
fix platformio.ini generation
Diffstat (limited to 'include/py')
-rw-r--r-- | include/py/homekit/config/__init__.py | 3 | ||||
-rw-r--r-- | include/py/homekit/pio/products.py | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/include/py/homekit/config/__init__.py b/include/py/homekit/config/__init__.py index 2fa5214..8fedfa6 100644 --- a/include/py/homekit/config/__init__.py +++ b/include/py/homekit/config/__init__.py @@ -5,7 +5,8 @@ from .config import ( Translation, config, is_development_mode, - setup_logging + setup_logging, + CONFIG_DIRECTORIES ) from ._configs import ( LinuxBoardsConfig, diff --git a/include/py/homekit/pio/products.py b/include/py/homekit/pio/products.py index 388da03..c4fcd73 100644 --- a/include/py/homekit/pio/products.py +++ b/include/py/homekit/pio/products.py @@ -8,8 +8,8 @@ from collections import OrderedDict _logger = logging.getLogger(__name__) _products_dir = os.path.join( os.path.dirname(__file__), - '..', '..', '..', - 'platformio' + '..', '..', '..', '..', + 'pio' ) |