8703124c760df303d29571aa975a72cc4f868f09,homeassistant/components/media_player/yamaha.py,,setup_platform,#Any#Any#Any#Any#,48

Before Change


        receivers = rxv.RXV(ctrl_url, name).zone_controllers()

    for receiver in receivers:
        if receiver.zone not in zone_ignore:
            hass.data[KNOWN].add(receiver.ctrl_url)
            add_devices([
                YamahaDevice(name, receiver, source_ignore,
                             source_names, zone_names)
            ], True)


class YamahaDevice(MediaPlayerDevice):
    Representation of a Yamaha device.

    def __init__(self, name, receiver, source_ignore,

After Change


        if receiver.zone in zone_ignore:
            continue

        device = YamahaDevice(name, receiver, source_ignore,
                              source_names, zone_names)

        // Only add device if it"s not already added
        if device.unique_id not in hass.data[DATA_YAMAHA]:
            hass.data[DATA_YAMAHA][device.unique_id] = device
            devices.append(device)
        else:
            _LOGGER.debug("Ignoring duplicate receiver %s", name)

    def service_handler(service):
        Handle for services.
        entity_ids = service.data.get(ATTR_ENTITY_ID)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 6

Instances


Project Name: home-assistant/home-assistant
Commit Name: 8703124c760df303d29571aa975a72cc4f868f09
Time: 2018-01-17
Author: pierre.staahl@gmail.com
File Name: homeassistant/components/media_player/yamaha.py
Class Name:
Method Name: setup_platform


Project Name: pantsbuild/pants
Commit Name: 879df20df1df1b9cf16e29cb4a2836f4831f23d9
Time: 2019-12-08
Author: john.sirois@gmail.com
File Name: src/python/pants/backend/python/subsystems/pex_build_util.py
Class Name: PexBuilderWrapper
Method Name: add_resolved_requirements


Project Name: pantsbuild/pants
Commit Name: c15e9b0930ea6ce6eef5be7c6c00b9ee2b706865
Time: 2020-02-21
Author: john.sirois@gmail.com
File Name: src/python/pants/python/pex_build_util.py
Class Name: PexBuilderWrapper
Method Name: add_resolved_requirements