so instead of ``` class Thing(datatype('OtherThing...
# development
r
so instead of
Copy code
class Thing(datatype('OtherThing', ['a', 'b', 'c'])):
  """An informative docstring here."""
we could just do:
Copy code
Thing = datatype('OtherThing', ['a', 'b', 'c'], 'An informative docstring here')