Skip to content

Commit e5bb27e

Browse files
committed
fix: make format && make check
1 parent 93b0604 commit e5bb27e

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
@@ -190,13 +190,11 @@ def prove_rs(opts: ProveRSOpts) -> APRProof:
190190
]
191191
has_missing = len(missing_body_syms) > 0
192192
_LOGGER.info(
193-
f"Reduced items table size {len(smir_info.items)}; "
194-
f"missing-bodies-present={has_missing} count={len(missing_body_syms)}"
193+
f'Reduced items table size {len(smir_info.items)}; '
194+
f'missing-bodies-present={has_missing} count={len(missing_body_syms)}'
195195
)
196196
if has_missing:
197-
_LOGGER.debug(
198-
f"Missing-body function symbols (first 5): {missing_body_syms[:5]}"
199-
)
197+
_LOGGER.debug(f'Missing-body function symbols (first 5): {missing_body_syms[:5]}')
200198

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

0 commit comments

Comments
 (0)