Skip to content

Commit 7a25730

Browse files
committed
Fixing pep8 issue.
1 parent 15d0bb9 commit 7a25730

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

plugins/connection/ssh_netscaler_adc.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,11 @@ def wrapped(self, *args, **kwargs):
404404
stdout = re.sub(warning_regex, "", stdout, 0, re.UNICODE)
405405

406406
# Remove RPC node password warnings that contaminate stdout
407-
rpc_warning_regex = r"Warning: One or more RPC nodes are configured with default passwords. For enhanced security, you must change the default RPC node password."
407+
rpc_warning_regex = (
408+
r"Warning: One or more RPC nodes are configured with default "
409+
r"passwords. For enhanced security, you must change the default "
410+
r"RPC node password."
411+
)
408412
stdout = re.sub(rpc_warning_regex, "", stdout, 0, re.UNICODE)
409413

410414
# Remove leading "]" characters that might remain

0 commit comments

Comments
 (0)