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.

loader.py 192B

1234567
  1. class DummyClass:
  2. pass
  3. def custom_class_loader(module_label, classnames, module_prefix):
  4. # For testing purposes just return a dummy class
  5. return [DummyClass for c in classnames]