dotfiles/.config/Code/User/History/5b46c3f1/maFk.py

8 lines
159 B
Python
Raw Normal View History

2024-09-09 16:59:28 +05:00
class Shape:
def area():
pass
class Rectangle(Shape):
def __init__(self, width: int, height: int) -> None:
super().__init__()