Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

led-ble

Package Overview
Dependencies
Maintainers
1
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

led-ble - npm Package Compare versions

Comparing version
1.1.5
to
1.1.6
+1
-1
PKG-INFO
Metadata-Version: 2.3
Name: led-ble
Version: 1.1.5
Version: 1.1.6
Summary: Control a wide range of LED BLE devices

@@ -5,0 +5,0 @@ License: Apache-2.0

[project]
name = "led-ble"
version = "1.1.5"
version = "1.1.6"
license = "Apache-2.0"

@@ -5,0 +5,0 @@ description = "Control a wide range of LED BLE devices"

from __future__ import annotations
__version__ = "1.1.5"
__version__ = "1.1.6"

@@ -5,0 +5,0 @@

@@ -430,3 +430,6 @@ from __future__ import annotations

"""Return if the device is a dream."""
return self.model_num in (0x10,)
return self.model_num in (0x10,) or (
self._advertisement_data is not None
and self._advertisement_data.local_name.startswith("Dream")
)

@@ -433,0 +436,0 @@ @property