Skip to content

Commit

Permalink
logic fix
Browse files Browse the repository at this point in the history
  • Loading branch information
g0rgamesh committed May 6, 2024
1 parent 9f96deb commit 83654a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/kayobe-automation-redact
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def annotate(ctx, value):
if isinstance(annotation_exceptions[path_str[0]], str):
return f"{annotation_exceptions[path_str[0]]}.{value}"
else:
return annotation_exceptions[path_str[0]][value]
return annotation_exceptions[path_str[0]]
else:
return f"{'_'.join(path_str)}.{value}"

Expand Down

0 comments on commit 83654a4

Please sign in to comment.