diff options
| author | Gunung P. Wibisono <55311527+gunungpw@users.noreply.github.com> | 2022-04-06 16:03:47 +0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-06 11:03:47 +0200 |
| commit | 67af2c0f58406a69d1b254a5deb61d0661296a9f (patch) | |
| tree | dbf44063cda552fe0f6114724b63c8674273d025 /doc/data/messages/r | |
| parent | 3fa169936059af9926e62b6bc92ffe48c5e99bb8 (diff) | |
| download | pylint-git-67af2c0f58406a69d1b254a5deb61d0661296a9f.tar.gz | |
Add example for `reimported` message documentation (#6206)
Diffstat (limited to 'doc/data/messages/r')
| -rw-r--r-- | doc/data/messages/r/reimported/bad.py | 2 | ||||
| -rw-r--r-- | doc/data/messages/r/reimported/good.py | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/doc/data/messages/r/reimported/bad.py b/doc/data/messages/r/reimported/bad.py new file mode 100644 index 000000000..c9ab065a5 --- /dev/null +++ b/doc/data/messages/r/reimported/bad.py @@ -0,0 +1,2 @@ +import re +import re # [reimported] diff --git a/doc/data/messages/r/reimported/good.py b/doc/data/messages/r/reimported/good.py new file mode 100644 index 000000000..b199df542 --- /dev/null +++ b/doc/data/messages/r/reimported/good.py @@ -0,0 +1 @@ +import re |
