Skip to content

Commit

Permalink
Removing parent string from receoved.py asa banner file
Browse files Browse the repository at this point in the history
  • Loading branch information
carlitos75 committed Dec 19, 2024
1 parent 1dfdb40 commit 03f15f2
Showing 1 changed file with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
from netutils.config.parser import ConfigLine

parent: str = "group-policy Grs-POLICY attributes"
data: list[ConfigLine] = [
ConfigLine(config_line=parent, parents=()),
ConfigLine(config_line=" banner value This is an", parents=(parent,)),
ConfigLine(config_line=" banner value example nested banner", parents=(parent,)),
ConfigLine(config_line="group-policy Grs-POLICY attributes", parents=()),
ConfigLine(
config_line=" banner value This is an",
parents=("group-policy Grs-POLICY attributes",),
),
ConfigLine(
config_line=" banner value example nested banner",
parents=("group-policy Grs-POLICY attributes",),
),
]

0 comments on commit 03f15f2

Please sign in to comment.