From 2ae322778a97a0ba0b0f2d223e78601d75530cc2 Mon Sep 17 00:00:00 2001 From: Brandon Rothweiler Date: Mon, 20 Jun 2022 03:10:39 -0400 Subject: [PATCH] Small fixes to creating_integration_manifest.md (#1371) --- docs/creating_integration_manifest.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/creating_integration_manifest.md b/docs/creating_integration_manifest.md index 1204d081..45eaab9f 100644 --- a/docs/creating_integration_manifest.md +++ b/docs/creating_integration_manifest.md @@ -96,10 +96,6 @@ Requirements are Python libraries or modules that you would normally install usi Requirements is an array of strings. Each entry is a `pip` compatible string. For example, the media player Cast platform depends on the Python package PyChromecast v3.2.0: `["pychromecast==3.2.0"]`. -## Loggers - -The `loggers` field is a list of names that the integration's requirements use for their [getLogger](https://docs.python.org/3/library/logging.html?highlight=logging#logging.getLogger) calls. - ### Custom requirements during development & testing During the development of a component, it can be useful to test against different versions of a requirement. This can be done in two steps, using `pychromecast` as an example: @@ -129,7 +125,11 @@ It is also possible to use a public git repository to install a requirement. Th ### Custom integration requirements -Custom integration should only include requirements that are not required by the Core [requirements.txt](https://github.com/home-assistant/core/blob/dev/requirements.txt). +Custom integrations should only include requirements that are not required by the Core [requirements.txt](https://github.com/home-assistant/core/blob/dev/requirements.txt). + +## Loggers + +The `loggers` field is a list of names that the integration's requirements use for their [getLogger](https://docs.python.org/3/library/logging.html?highlight=logging#logging.getLogger) calls. ## Supported Brands