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.

unused_import_assigned_to.py 345B

123456789101112131415161718192021222324
  1. # pylint: disable=missing-docstring, import-error, invalid-name
  2. # pylint: disable=too-few-public-methods, blacklisted-name
  3. import uuid
  4. import foo
  5. from .a import x
  6. class Y(object):
  7. x = x[0]
  8. def test(default=None):
  9. return default
  10. class BaseModel(object):
  11. uuid = test(default=uuid.uuid4)
  12. class bar(object):
  13. foo = foo.baz