7 lines
143 B
Python
7 lines
143 B
Python
from plotly.basedatatypes import BaseTraceType
|
|
from typing import List
|
|
|
|
class Chart:
|
|
|
|
def traces(self) -> List[BaseTraceType]:
|
|
pass |