From f317697a8c30263fd5dba6474585f9f9bd99f082 Mon Sep 17 00:00:00 2001 From: moshferatu Date: Fri, 29 Dec 2023 05:37:30 -0800 Subject: [PATCH] Add base chart type --- chart.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 chart.py diff --git a/chart.py b/chart.py new file mode 100644 index 0000000..e1cb015 --- /dev/null +++ b/chart.py @@ -0,0 +1,6 @@ +from plotly.basedatatypes import BaseTraceType + +class Chart: + + def trace(self) -> BaseTraceType: + pass \ No newline at end of file