Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/data/messages/b/bad-string-format-type/bad.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print("%d" % "1") # [bad-string-format-type]
2 changes: 2 additions & 0 deletions doc/data/messages/b/bad-string-format-type/details.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
This check is currently only active for "old-style" string formatting as seen in the examples.
See `Issue #6085 <https://github.com/PyCQA/pylint/issues/6163>`_ for more information.
1 change: 1 addition & 0 deletions doc/data/messages/b/bad-string-format-type/good.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print("%d" % 1)
2 changes: 2 additions & 0 deletions doc/data/messages/b/bad-string-format-type/related.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- `Format String Syntax <https://docs.python.org/3/library/string.html#formatstrings>`_
- `PyFormat <https://pyformat.info/>`_