Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianswms committed Nov 12, 2024
1 parent 777de76 commit 3c3a618
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.8, 3.9, "3.10"]
python-version: [3.8, 3.9, "3.10", "3.11"]
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
Expand Down
2 changes: 1 addition & 1 deletion target_apprise/sinks.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def process_record(self, record: dict[str, t.Any], context: dict) -> None:
for k, v in record.items():
if not k.startswith("_sdc_replace_"):
continue
to_replace = f"{{{k}}}" # Ex: '{_sdc_replace_target_email}'
to_replace = f"{{{k}}}" # Ex: '{_sdc_replace_target_email}'

if to_replace not in uri:
debug_msg = ( # Contains secrets!
Expand Down
2 changes: 1 addition & 1 deletion target_apprise/target.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class TargetApprise(Target):
th.Property(
"uri_replacement",
th.BooleanType,
description= (
description=(
"If enabled, allows for uris to be dynamically configured. Any fields "
"in the record that have a name beginning with `_sdc_replace_`, will "
"have their value substituted in for a matching string in the URI. See "
Expand Down

0 comments on commit 3c3a618

Please sign in to comment.