Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
babenek committed Dec 13, 2024
1 parent 6e95195 commit f3e9ffe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion credsweeper/credentials/line_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ def get_colored_line(self, hashed: bool, subtext: bool = False) -> str:
+ Fore.LIGHTYELLOW_EX \
+ self.line[self.value_start:self.value_end] \
+ Style.RESET_ALL \
+ self.line[self.value_end:]
+ self.line[self.value_end:] # noqa: E127
# separator may be missing
if 0 <= self.separator_start < self.separator_end <= self.value_start:
line = line[:self.separator_start] \
Expand Down

0 comments on commit f3e9ffe

Please sign in to comment.