Skip to content

Commit c6d3027

Browse files
jeremjeremad
authored andcommitted
fix: black was updated
1 parent 3a34806 commit c6d3027

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

tankersdk_identity/test/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
@pytest.fixture
66
def test_app() -> Dict[str, str]:
7-
""" Note: this was generated with the Javascript SDK. We keep it to check Javascript
7+
"""Note: this was generated with the Javascript SDK. We keep it to check Javascript
88
and Python code are interoperable
99
1010
"""

tankersdk_identity/test/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def parse_b64_json(b64_json: str) -> Dict[str, str]:
1616

1717

1818
def corrupt_buffer(buffer: bytes) -> bytes:
19-
""" Make sure one part of the buffer gets changed """
19+
"""Make sure one part of the buffer gets changed"""
2020
array = bytearray(buffer)
2121
array[0] = (array[0] + 1) % 255
2222
return bytes(array)

0 commit comments

Comments
 (0)