Enforce string-formatting with f-strings (#10980)

* First third

* Styling and fix mistake

* Quality

* All the rest

* Treat %s and %d

* typo

* Missing )

* Apply suggestions from code review

Co-authored-by: Lysandre Debut <lysandre@huggingface.co>

Co-authored-by: Lysandre Debut <lysandre@huggingface.co>
This commit is contained in:
Sylvain Gugger
2021-03-31 10:00:27 -04:00
committed by GitHub
parent d0b3797a3b
commit acc3bd9d2a
224 changed files with 984 additions and 1312 deletions

View File

@@ -86,6 +86,6 @@ if __name__ == "__main__":
end_train_time = time.time() - start_train_time
logger.info("*** Train ***")
logger.info("train_runtime = %s", end_train_time)
logger.info(f"train_runtime = {end_train_time}")
for key, value in train_results.history.items():
logger.info(" %s = %s", key, value)
logger.info(f" {key} = {value}")