Path 1: 2752 calls (1.0)
↩ return ConsoleOptions (2752)
1def reset_height(self) -> "ConsoleOptions": 2 """Return a copy of the options with height set to ``None``. 3 4 Returns: 5 ~ConsoleOptions: New console options instance. 6 """ 7 options = self.copy() 8 options.height = None 9 return options