plotting/chart.py

7 lines
143 B
Python

from plotly.basedatatypes import BaseTraceType
from typing import List
class Chart:
def traces(self) -> List[BaseTraceType]:
pass