Skip to content

Commit

Permalink
Remove whitespace to pass on flake8.
Browse files Browse the repository at this point in the history
  • Loading branch information
italoPontes committed Mar 22, 2024
1 parent 30dcd4d commit e0c3f30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/steganography.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def modify_last_bit(self, pixel_value: int = 0,
if new_last_bit not in {0, 1}:
return pixel_value
output_value = (pixel_value & -2) | (new_last_bit & 1)
return output_value
return output_value

def get_resolution(self, image: np.ndarray):
"""
Expand Down

0 comments on commit e0c3f30

Please sign in to comment.