Skip to content

Commit

Permalink
dependencies updates puydantic to 2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dmulyalin committed Aug 6, 2023
1 parent bee9b30 commit e1c9441
Show file tree
Hide file tree
Showing 3 changed files with 153 additions and 152 deletions.
20 changes: 10 additions & 10 deletions nornir_salt/plugins/tasks/netmiko_send_command_ps.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,16 +89,16 @@

def send_command_ps(
self,
command_string,
read_timeout=30,
timeout=120,
inter_loop_sleep=0.1,
initial_sleep=0.1,
strip_prompt=True,
strip_command=True,
normalize=True,
cutoff=0.6,
nowait=False,
command_string: str,
read_timeout:int=30,
timeout:int=120,
inter_loop_sleep:float=0.1,
initial_sleep:float=0.1,
strip_prompt:bool=True,
strip_command:bool=True,
normalize:bool=True,
cutoff:float=0.6,
nowait:bool=False,
):
"""
Execute command_string_ps on the SSH channel using promptless (ps) approach. Can be used
Expand Down

0 comments on commit e1c9441

Please sign in to comment.