Skip to content

Commit

Permalink
Fix F524 by fixing the name of the placeholder
Browse files Browse the repository at this point in the history
  • Loading branch information
JasperCraeghs committed Oct 20, 2023
1 parent 0f238e3 commit 4ddda00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mlx/traceability/traceable_collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def self_test(self, notification_item_id, docname=None):
for target_of_target in target.yield_targets(relation):
if target_of_target in item.yield_targets(rev_relation):
errors.append(TraceabilityException(
"Circular relationship found: {src} {rel} {tgt} {rel} {nested} {rel} {source}"
"Circular relationship found: {src} {rel} {tgt} {rel} {nested} {rel} {src}"
.format(src=itemid, rel=relation, tgt=tgt, nested=target_of_target),
item.docname))
if errors:
Expand Down

0 comments on commit 4ddda00

Please sign in to comment.