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.

too_many_arguments_issue_1045.py 195B

12345678910111213
  1. # pylint: disable=missing-docstring
  2. # pylint: disable=unused-import, undefined-variable; false positives :-(
  3. import functools
  4. @functools.lru_cache()
  5. def func():
  6. pass
  7. func.cache_clear()