Skip to content

Commit

Permalink
Typos in code example in navigate-playbooks.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromefellus-sekoia authored Oct 14, 2024
1 parent 47fa7cf commit 285ea6a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions _shared_content/automate/navigate-playbooks.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,10 +198,10 @@ from jinja2 import Template
file_json = open("file.json", "r")
loading = json.load(file_json)
# The JINJA partern to be tested
jinja_patern = "{{urgency.value}}"
# The JINJA pattern to be tested
jinja_pattern = "{{urgency.value}}"
tm = Template(jinja_patern)
tm = Template(jinja_pattern)
msg = tm.render(urgency=loading["urgency"])
print(msg)
Expand Down

0 comments on commit 285ea6a

Please sign in to comment.