Skip to content

Commit

Permalink
0.7.0dev2
Browse files Browse the repository at this point in the history
  • Loading branch information
pszafer committed Aug 7, 2023
1 parent e62e94a commit 7d4fc92
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion boneio/relay/pcf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def __init__(
expander_id: str,
output_type: str = SWITCH,
restored_state: bool = False,
**kwargs
**kwargs,
) -> None:
"""Initialize MCP relay."""
self._pin: DigitalInOut = mcp.get_pin(pin)
Expand Down
3 changes: 2 additions & 1 deletion boneio/sensor/gpio_beta.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
"""GpioInputBinarySensor to receive signals."""
import logging
from functools import partial
from boneio.const import PRESSED, RELEASED
from boneio.const import PRESSED, RELEASED, BOTH
from boneio.helper import GpioBaseClass
from boneio.helper.gpio import add_event_callback, add_event_detect

_LOGGER = logging.getLogger(__name__)


Expand Down
2 changes: 1 addition & 1 deletion boneio/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# flake8: noqa
__version__ = "0.7.0dev1"
__version__ = "0.7.0dev2"

0 comments on commit 7d4fc92

Please sign in to comment.