kenken999's picture
test
275b9f3
raw
history blame
277 Bytes
from dataclasses import dataclass
@dataclass
class Shape:
"""Base class for shapes"""
x: int
y: int
@dataclass
class Circle(Shape):
"""Circle shape"""
radius: int
@dataclass
class Rectangle(Shape):
"""Rectangle shape"""
width: int
height: int