diff options
author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-03-09 21:03:12 +0100 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-03-14 19:48:30 +0100 |
commit | f9c45916843996b545c954a7ca958133fe7b1e95 (patch) | |
tree | 3721b7516a04926f577f227b0988fc1b4f06e59b /tests/input | |
parent | c41daa7d229823e18ce6106bef85e071d6910be1 (diff) | |
download | pylint-git-f9c45916843996b545c954a7ca958133fe7b1e95.tar.gz |
Migrate func_w0611.py to new functional tests
Diffstat (limited to 'tests/input')
-rw-r--r-- | tests/input/func_w0611.py | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/tests/input/func_w0611.py b/tests/input/func_w0611.py deleted file mode 100644 index 887787242..000000000 --- a/tests/input/func_w0611.py +++ /dev/null @@ -1,25 +0,0 @@ -"""check unused import -""" -# pylint: disable=no-absolute-import, useless-object-inheritance - -from __future__ import print_function - -import os -import sys - -class NonRegr(object): - """???""" - def __init__(self): - print('initialized') - - def sys(self): - """should not get sys from there...""" - print(self, sys) - - def dummy(self, truc): - """yo""" - return self, truc - - def blop(self): - """yo""" - print(self, 'blip') |