style: run the formatter over the issue 14 changes

ruff format only; no semantic change.
This commit is contained in:
2026-08-20 00:44:21 -04:00
parent d9ceaecf20
commit 5a025b6e5d
5 changed files with 38 additions and 20 deletions
+1 -3
View File
@@ -261,9 +261,7 @@ class SourceAdmission:
)
nap = self._nap(hint, clock)
if hint > 0:
logger.info(
"熔断开路等待 {:.1f}s 后重试(scope={}, 原因={})", nap, self._scope, reasons
)
logger.info("熔断开路等待 {:.1f}s 后重试(scope={}, 原因={})", nap, self._scope, reasons)
await self._sleep(nap)
def _nap(self, hint: float, clock: StallClock) -> float: