Path 1: 5224 calls (1.0)
↩ return ConsoleOptions (5224)
1def copy(self) -> "ConsoleOptions": 2 """Return a copy of the options. 3 4 Returns: 5 ConsoleOptions: a copy of self. 6 """ 7 options: ConsoleOptions = ConsoleOptions.__new__(ConsoleOptions) 8 options.__dict__ = self.__dict__.copy() 9 return options