blob: 69f266863fdd738b03f2917dbe04f070df10c7a3 [file] [log] [blame]
"""Test disabling of cyclic import check inside a function
"""
# pylint: disable=no-absolute-import,import-outside-toplevel
from __future__ import print_function
def func():
"""Test disabling of cyclic import check inside a function"""
from . import w0401_cycle # pylint: disable=cyclic-import
if w0401_cycle:
print(w0401_cycle)