Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

func_w0401_disabled.py 201B

123456789
  1. """test cyclic import
  2. """
  3. # pylint: disable=no-absolute-import
  4. from __future__ import print_function
  5. from . import w0401_cycle # pylint: disable=cyclic-import
  6. if w0401_cycle:
  7. print(w0401_cycle)