Skip to content

Commit

Permalink
fix(ruff): E226
Browse files Browse the repository at this point in the history
  • Loading branch information
Marshall-Hallenbeck committed Jun 5, 2024
1 parent cfe231a commit 3797ccf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nxc/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ def parse_credentials(self):
with open(ntlm_hash) as ntlm_hash_file:
for i, line in enumerate(ntlm_hash_file):
if len(line) != 16 and len(line) != 32:
self.logger.fail(f"Invalid NTLM hash length on line {i+1}: {line}")
self.logger.fail(f"Invalid NTLM hash length on line {i + 1}: {line}")
continue
else:
secret.append(line.strip())
Expand Down

0 comments on commit 3797ccf

Please sign in to comment.