We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aeb4024 commit dd507e2Copy full SHA for dd507e2
python/selfie-lib/selfie_lib/WriteTracker.py
@@ -154,7 +154,7 @@ def recordInternal(
154
existing = self.writes[key]
155
if existing.snapshot != snapshot:
156
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"
+ 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)}"
158
)
159
elif not allow_multiple_equivalent_writes:
160
raise ValueError("Snapshot was set to the same value multiple times.")
0 commit comments