Skip to content

Commit 805a3d6

Browse files
committed
fix: rename ambiguous variable l to lbl in site24x7 provider (E741)
1 parent a192409 commit 805a3d6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

keep/providers/site24x7_provider/site24x7_provider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ def _format_alert(
236236

237237
labels = event.get("LABELS", "")
238238
if isinstance(labels, str) and labels:
239-
labels = [l.strip() for l in labels.split(",") if l.strip()]
239+
labels = [lbl.strip() for lbl in labels.split(",") if lbl.strip()]
240240
elif not isinstance(labels, list):
241241
labels = []
242242

0 commit comments

Comments
 (0)