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.

thing2.py 194B

1234567
  1. """The second thing."""
  2. # pylint: disable=no-absolute-import
  3. from .all_the_things import THING1
  4. __revision__ = None
  5. THING2 = "I am thing2"
  6. THING1_PLUS_THING2 = "%s, plus %s" % (THING1, THING2)