Skip to content

Commit

Permalink
Correct minor example errors
Browse files Browse the repository at this point in the history
Signed-off-by: Gavin Jaeger-Freeborn <[email protected]>
  • Loading branch information
Gavinok committed Oct 30, 2024
1 parent e131557 commit 350c2af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/oidc-controller/config/user_variable_substitution.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def sub_days_plus_one(days: str) -> int:


variable_substitution_map.add_variable_substitution(
r"$sub_days_plus_one_(\d+)", sub_days_plus_one
r"\$sub_days_plus_one_(\d+)", sub_days_plus_one
)


Expand All @@ -20,5 +20,5 @@ def sub_string_for_sure(_: str) -> str:


variable_substitution_map.add_variable_substitution(
r"$sub_string_for_sure_(.+)", sub_string_for_sure
r"\$sub_string_for_sure_(.+)", sub_string_for_sure
)

0 comments on commit 350c2af

Please sign in to comment.