Skip to content

Commit

Permalink
fix: fix flake 8 line length error
Browse files Browse the repository at this point in the history
  • Loading branch information
Ernst79 committed Feb 17, 2023
1 parent 1059aa1 commit e7490b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .flake8
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[flake8]
exclude = docs
max-line-length = 106
max-line-length = 100
2 changes: 1 addition & 1 deletion tests/test_parser_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ def test_bthome_with_mac(caplog):
def test_bthome_with_mac_encrypted():
"""Test BTHome parser with mac address in payload plus encryption."""
bindkey = "231d39c1d7cc1ab1aee224cd096db932"
data_string = b"\x43\xa5\x80\x8f\xe6\x48\x54\xa4\x72\x66\xc9\x5f\x73\x00\x11\x22\x33\x78\x23\x72\x14"
data_string = b"\x43\xa5\x80\x8f\xe6\x48\x54\xa4\x72\x66\xc9\x5f\x73\x00\x11\x22\x33\x78\x23\x72\x14" # noqa: E501
advertisement = bytes_to_service_info(
data_string,
local_name="TEST DEVICE",
Expand Down

0 comments on commit e7490b4

Please sign in to comment.