Skip to content

Commit 3ed4393

Browse files
style: formatting
1 parent fc65829 commit 3ed4393

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • src/resolver_athena_client/client/transformers

src/resolver_athena_client/client/transformers/core.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ def process_image() -> tuple[bytes, bool]:
6262
brg_bytes[:] = rgb_bytes # Initialize with RGB data
6363

6464
for i in range(0, len(rgb_bytes), 3):
65-
brg_bytes[i] = rgb_bytes[i + 2] # B
66-
brg_bytes[i + 2] = rgb_bytes[i] # R
65+
brg_bytes[i] = rgb_bytes[i + 2] # B
66+
brg_bytes[i + 2] = rgb_bytes[i] # R
6767

6868
return bytes(brg_bytes), True # Data was transformed
6969

0 commit comments

Comments
 (0)