Skip to content

Commit

Permalink
remove print statement and extra spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
aida-shumburo committed Sep 20, 2024
1 parent 1a05789 commit 291d3fd
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,6 @@ def execute_module(self):
existing_interfaces_facts = self.get_interfaces_facts()
commands, requests = self.set_config(existing_interfaces_facts, warnings)
if commands and len(requests) > 0:
print("\ncommand = \n {0}\n requests =\n {1}".format(commands, requests), file=open('commands.log', 'a'))
if not self._module.check_mode:
try:
edit_config(self._module, to_request(self._module, requests))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,6 @@ def transform_config(self, conf):
if 'openconfig-if-ethernet-ext2:unreliable-los' in eth_conf:
trans_cfg['unreliable_los'] = eth_conf['openconfig-if-ethernet-ext2:unreliable-los'].split(':', 1)[-1]


return trans_cfg

def reset_loop_backs(self):
Expand Down

0 comments on commit 291d3fd

Please sign in to comment.