plotting/chart.py

7 lines
143 B
Python
Raw Normal View History

2023-12-29 13:37:30 +00:00
from plotly.basedatatypes import BaseTraceType
from typing import List
2023-12-29 13:37:30 +00:00
class Chart:
def traces(self) -> List[BaseTraceType]:
2023-12-29 13:37:30 +00:00
pass