[python] Fix redundant formatted call

GitOrigin-RevId: b972c2605e3aee85b91bd9f7bd88ade24c417b43
This commit is contained in:
Tagir Valeev
2024-07-03 09:55:44 +02:00
committed by intellij-monorepo-bot
parent 780bab7ad1
commit 15fb25d32e

View File

@@ -148,7 +148,7 @@ public final class PyClassNameCompletionContributor extends PyImportableNameComp
LOG.debug(counters + " computed for prefix '" + result.getPrefixMatcher().getPrefix() + "' in " + duration + " ms");
if (TRACING_WITH_SPUTNIK_ENABLED) {
//noinspection UseOfSystemOutOrSystemErr
System.out.println("\1h('Importable names completion','%d')".formatted((duration / 10) * 10));
System.out.printf("\1h('Importable names completion','%d')%n", (duration / 10) * 10);
}
});
}