Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add merge incidents endpoint [dnm] #2259

Prev Previous commit
Next Next commit
fix: F541 [*] f-string without any placeholders
  • Loading branch information
Kiryous committed Oct 22, 2024
commit 9c9ff05a66572f9bbe3f45f3888afa3100cd8969
2 changes: 1 addition & 1 deletion keep/api/routes/incidents.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ def merge_incidents(

message = f"{len(merged_ids)} incidents merged into {command.destination_incident_id} successfully"
if not merged_ids:
message = f"No incidents merged"
message = "No incidents merged"
if skipped_ids:
# TODO: plural
message += f", {len(skipped_ids)} incidents were skipped"
Expand Down
Loading