Skip to content

Commit

Permalink
Correct __init__ filename in publish instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
richo authored Nov 27, 2024
1 parent bddff7b commit bbe7175
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/docs/publish/integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ For an integration repository to be valid, it must meet the requirements below.
#### OK example:

```
custom_components/awesome/__init_.py
custom_components/awesome/__init__.py
custom_components/awesome/sensor.py
custom_components/awesome/manifest.json
README.md
Expand All @@ -26,7 +26,7 @@ README.md
#### Not OK example (1):

```
awesome/__init_.py
awesome/__init__.py
awesome/sensor.py
awesome/manifest.json
README.md
Expand All @@ -35,7 +35,7 @@ README.md
#### Not OK example (2):

```
__init_.py
__init__.py
sensor.py
manifest.json
README.md
Expand Down

0 comments on commit bbe7175

Please sign in to comment.