Skip to content

Commit

Permalink
ruff format
Browse files Browse the repository at this point in the history
  • Loading branch information
nedtwigg committed Dec 16, 2024
1 parent bad3c91 commit 54a4b7a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python/selfie-lib/selfie_lib/SnapshotSystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,9 @@ def msg_snapshot_not_found_no_such_file(self, file) -> str:
return self.msg(f"Snapshot not found: no such file {file}")

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

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

0 comments on commit 54a4b7a

Please sign in to comment.