Skip to content

Commit dd507e2

Browse files
committed
No need for a trailing newline.
1 parent aeb4024 commit dd507e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/selfie-lib/selfie_lib/WriteTracker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ def recordInternal(
154154
existing = self.writes[key]
155155
if existing.snapshot != snapshot:
156156
raise ValueError(
157-
f"Snapshot was set to multiple values!\n first time: {existing.call_stack.location.ide_link(layout)}\n this time: {call.location.ide_link(layout)}\n"
157+
f"Snapshot was set to multiple values!\n first time: {existing.call_stack.location.ide_link(layout)}\n this time: {call.location.ide_link(layout)}"
158158
)
159159
elif not allow_multiple_equivalent_writes:
160160
raise ValueError("Snapshot was set to the same value multiple times.")

0 commit comments

Comments
 (0)