blob: 0703325a9e63d3fbfe18a2ee424ac6c153f638a7 (
plain)
1
2
3
4
5
6
7
|
"""Checks that disabling 'wrong-import-position' on a statement prevents it from
invalidating subsequent imports."""
# pylint: disable=unused-import
CONSTANT = True # pylint: disable=wrong-import-position
import sys
|