mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-07-27 04:03:09 +08:00
use f-strings instead of format (#693)
Co-authored-by: Diego Hurtado <ocelotl@users.noreply.github.com>
This commit is contained in:
@ -62,9 +62,7 @@ def main():
|
||||
instruments = (name,)
|
||||
|
||||
table.append(
|
||||
"| [{0}](./{0}) | {1} |".format(
|
||||
instrumentation, ",".join(instruments)
|
||||
)
|
||||
f"| [{instrumentation}](./{instrumentation}) | {','.join(instruments)} |"
|
||||
)
|
||||
|
||||
with open(
|
||||
|
Reference in New Issue
Block a user