Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: typo in @callback #2541

Open
wants to merge 5 commits into
base: dev
Choose a base branch
from
Open

Commits on Sep 18, 2024

  1. Update config_flow.py

    Fix typo in @callback: 
    `in_progess_instances` -> `in_progress_instances`
    danielbrunt57 committed Sep 18, 2024
    Configuration menu
    Copy the full SHA
    cc5c8ca View commit details
    Browse the repository at this point in the history
  2. Update __init__.py

    Changed:
    'from .config_flow import in_progess_instances'
    to:
    'from .config_flow import in_progress_instances'
    
    There are no other references in this file, or any other file.
    danielbrunt57 committed Sep 18, 2024
    Configuration menu
    Copy the full SHA
    a22fe3d View commit details
    Browse the repository at this point in the history
  3. Update config_flow.py

    @callback
    def in_progress_instances(hass):
        """Return a set of in-progress Alexa Media flows."""
        return {
            entry["flow_id"]
            for entry in hass.config_entries.flow.async_progress()
            if entry["handler"] == DOMAIN  # Ensure only Alexa Media flows are included
        }
    danielbrunt57 committed Sep 18, 2024
    Configuration menu
    Copy the full SHA
    7585792 View commit details
    Browse the repository at this point in the history
  4. style: auto fixes from pre-commit.com hooks

    for more information, see https://pre-commit.ci
    pre-commit-ci[bot] committed Sep 18, 2024
    Configuration menu
    Copy the full SHA
    9d4ec34 View commit details
    Browse the repository at this point in the history
  5. Update __init__.py

    danielbrunt57 committed Sep 18, 2024
    Configuration menu
    Copy the full SHA
    8c8585f View commit details
    Browse the repository at this point in the history