7 lines
129 B
Python
7 lines
129 B
Python
from .points import Points
|
|
|
|
|
|
class DSC(Points):
|
|
def __init__(self, x, y, **kwargs):
|
|
super().__init__(x, y, **kwargs)
|