]> git.puffer.fish Git - matthieu/frr.git/commitdiff
tools: string literals -> comments
authorChirag Shah <chirag@nvidia.com>
Sun, 24 Apr 2022 18:48:08 +0000 (11:48 -0700)
committerChirag Shah <chirag@nvidia.com>
Sun, 24 Apr 2022 18:56:47 +0000 (11:56 -0700)
Convert string literals to comment.

Signed-off-by: Chirag Shah <chirag@nvidia.com>
tools/frr-reload.py

index 9b96243d98f2a68ddc1b0cf5cefc703330182a93..f47f9a7eb0267e91af4859a85b809f4b8b8a0af8 100755 (executable)
@@ -901,15 +901,11 @@ def bgp_remove_neighbor_cfg(lines_to_del, del_nbr_dict):
         lines_to_del.remove((ctx_keys, line))
 
 
-"""
-This method handles deletion of bgp peer group config.
-The objective is to delete config lines related to peers
-associated with the peer-group and move the peer-group
-config line to the end of the lines_to_del list.
-"""
-
-
 def delete_move_lines(lines_to_add, lines_to_del):
+    # This method handles deletion of bgp peer group config.
+    # The objective is to delete config lines related to peers
+    # associated with the peer-group and move the peer-group
+    # config line to the end of the lines_to_del list.
 
     bgp_delete_nbr_remote_as_line(lines_to_add)