소스 검색

format with black

master
Dimitri Merejkowsky 5 년 전
부모
커밋
b0d21a60d3
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. +1
    -0
      sources/stegano/stegano.py

+ 1
- 0
sources/stegano/stegano.py 파일 보기

@@ -28,6 +28,7 @@ def by_chunk(iterable, size, fillvalue=0):
yield chunk
chunk = []


def set_bit(old_byte, new_bit):
b = list(bin(old_byte))
b[-1] = str(new_bit)