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

Bookworm/Pi5 Compatibility: Upgrade to latest boilerplate #5

Merged
merged 7 commits into from
May 23, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
QA: Apply isort suggestions.
  • Loading branch information
Gadgetoid committed May 22, 2024
commit f0c71a88ed75ac49853340dffbdee4894f00d5e4
3 changes: 2 additions & 1 deletion examples/gas.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
#!/usr/bin/env python3

import logging
import time

from mics6814 import MICS6814
import logging

gas = MICS6814()

Expand Down
1 change: 1 addition & 0 deletions examples/led.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env python3
import sys

from mics6814 import MICS6814

print("""led.py - Set the RGB LED
Expand Down
1 change: 0 additions & 1 deletion mics6814/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import ioexpander as io


__version__ = '0.0.2'

MICS6814_I2C_ADDR = 0x19
Expand Down
3 changes: 2 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import sys
import pytest

import mock
import pytest


@pytest.fixture(scope='function', autouse=True)
Expand Down