Skip to content

Commit

Permalink
Add examples for bad-string-format-type (#6164)
Browse files Browse the repository at this point in the history
Co-authored-by: Vladyslav Krylasov <[email protected]>
  • Loading branch information
DudeNr33 and sprytnyk authored Apr 3, 2022
1 parent 0880d95 commit c50834f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 0 deletions.
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/>`_

0 comments on commit c50834f

Please sign in to comment.