Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 334 Bytes

consider-using-f-string.md

File metadata and controls

11 lines (6 loc) · 334 Bytes

Pattern: Missing use of f-string

Issue: -

Description

Used when Pylint detects a string that is being formatted with format() or % which could potentially be a f-string. The use of f-strings is preferred.

Further Reading