(self)
| 91 | return f"The area of the square is {self.area}." |
| 92 | |
| 93 | def truncate_decimals_prettify(self): |
| 94 | return f"The area of the square is {self.truncate_decimals()}." |
| 95 | |
| 96 | |
| 97 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected