Skip to content

Commit 225dabc

Browse files
committed
fix: make format && make check
1 parent def9b32 commit 225dabc

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

kmir/src/kmir/kmir.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -205,13 +205,11 @@ def prove_rs(opts: ProveRSOpts) -> APRProof:
205205
]
206206
has_missing = len(missing_body_syms) > 0
207207
_LOGGER.info(
208-
f"Reduced items table size {len(smir_info.items)}; "
209-
f"missing-bodies-present={has_missing} count={len(missing_body_syms)}"
208+
f'Reduced items table size {len(smir_info.items)}; '
209+
f'missing-bodies-present={has_missing} count={len(missing_body_syms)}'
210210
)
211211
if has_missing:
212-
_LOGGER.debug(
213-
f"Missing-body function symbols (first 5): {missing_body_syms[:5]}"
214-
)
212+
_LOGGER.debug(f'Missing-body function symbols (first 5): {missing_body_syms[:5]}')
215213

216214
kmir = KMIR.from_kompiled_kore(
217215
smir_info, symbolic=True, bug_report=opts.bug_report, target_dir=str(target_path)

0 commit comments

Comments
 (0)