diff options
author | Mark Byrne <31762852+mbyrnepr2@users.noreply.github.com> | 2022-05-25 21:16:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-25 21:16:50 +0200 |
commit | f2c1256d6e83fb76a3ec8dbfa62f578a2816831e (patch) | |
tree | 030c851a05dda38148eb08514044fe309abde226 /doc/data/messages/u/useless-object-inheritance/good.py | |
parent | e2bb11a1625a7890092fbc17fdb4874e8467a614 (diff) | |
download | pylint-git-f2c1256d6e83fb76a3ec8dbfa62f578a2816831e.tar.gz |
Added documentation examples for `useless-object-inheritance`. (#6701)
Diffstat (limited to 'doc/data/messages/u/useless-object-inheritance/good.py')
-rw-r--r-- | doc/data/messages/u/useless-object-inheritance/good.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/data/messages/u/useless-object-inheritance/good.py b/doc/data/messages/u/useless-object-inheritance/good.py new file mode 100644 index 000000000..f7e8c4a66 --- /dev/null +++ b/doc/data/messages/u/useless-object-inheritance/good.py @@ -0,0 +1,2 @@ +class Banana: + ... |