Skip to content

Commit 3797ccf

Browse files
fix(ruff): E226
1 parent cfe231a commit 3797ccf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

nxc/connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ def parse_credentials(self):
414414
with open(ntlm_hash) as ntlm_hash_file:
415415
for i, line in enumerate(ntlm_hash_file):
416416
if len(line) != 16 and len(line) != 32:
417-
self.logger.fail(f"Invalid NTLM hash length on line {i+1}: {line}")
417+
self.logger.fail(f"Invalid NTLM hash length on line {i + 1}: {line}")
418418
continue
419419
else:
420420
secret.append(line.strip())

0 commit comments

Comments
 (0)