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.

all_the_things.py 220B

123456789
  1. """All the things!"""
  2. # pylint: disable=no-absolute-import
  3. from .thing1 import THING1
  4. from .thing2 import THING2
  5. from .thing2 import THING1_PLUS_THING2
  6. __revision__ = None
  7. _ = (THING1, THING2, THING1_PLUS_THING2)
  8. del _