`ansi-wl-pprint` has (or rather had) this one, as https://github.com/quchen/prettyprinter/issues/246 points out: ``` instance Pretty a => Pretty (Maybe a) where pretty Nothing = empty pretty (Just a) = pretty a ``` Should `prettyprinter` get it too?