Skip to content

Commit 54a4b7a

Browse files
committed
ruff format
1 parent bad3c91 commit 54a4b7a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

python/selfie-lib/selfie_lib/SnapshotSystem.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,9 @@ def msg_snapshot_not_found_no_such_file(self, file) -> str:
125125
return self.msg(f"Snapshot not found: no such file {file}")
126126

127127
def msg_snapshot_mismatch(self, expected: str, actual: str) -> str: # noqa: ARG002
128-
return self.msg("Snapshot mismatch (error msg could be better https://github.com/diffplug/selfie/issues/501)")
128+
return self.msg(
129+
"Snapshot mismatch (error msg could be better https://github.com/diffplug/selfie/issues/501)"
130+
)
129131

130132
def msg_snapshot_mismatch_binary(self, expected: bytes, actual: bytes) -> str:
131133
return self.msg_snapshot_mismatch(

0 commit comments

Comments
 (0)