diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2019-10-09 09:43:38 +0200 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2019-10-09 09:54:44 +0200 |
commit | d3eda2e8a7952fd456815fe0cab98bb9f14efcfc (patch) | |
tree | ac8288caa49a66ec095e3d6e1fd9859137c9294c /tests/functional/s/string_formatting_py3.py | |
parent | e0ab5b95158db74f1c7c26f67591d7d06d8a3888 (diff) | |
download | pylint-git-d3eda2e8a7952fd456815fe0cab98bb9f14efcfc.tar.gz |
``import-outside-toplevel`` is emitted for ``ImportFrom`` nodes as well.
Close #3175
Diffstat (limited to 'tests/functional/s/string_formatting_py3.py')
-rw-r--r-- | tests/functional/s/string_formatting_py3.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/s/string_formatting_py3.py b/tests/functional/s/string_formatting_py3.py index c27e9719e..3cdd60eb2 100644 --- a/tests/functional/s/string_formatting_py3.py +++ b/tests/functional/s/string_formatting_py3.py @@ -17,5 +17,5 @@ def issue_957_bad2(): def issue_957_uninferable(): - from butchery import meat + from butchery import meat # pylint: disable=import-outside-toplevel print('%s%s%s' % ('eggs', *meat)) |