In many class functions we have data checks like this: ``` if self.object is None and self.other_thing is None: return ``` We should really handle these in the constructor to reduce LOC.