Skip to content

Commit 2af65fd

Browse files
authored
Merge pull request #120 from statisticsnorway/Didrikbt-bugfix
typing errors
2 parents 7706dc0 + 13824b0 commit 2af65fd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "ssb-konjunk"
3-
version = "2.0.8"
3+
version = "2.0.9"
44
description = "SSB Konjunk 422"
55
authors = [
66
{name = "Johanne Saxegaard", email = "jox@ssb.no"},

src/ssb_konjunk/components/figure.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import plotly.graph_objects as go
33
import pandas as pd
44

5-
def generate_fig(title: str, x: list[int] | pd.Series[Any] | pd.Index[Any], y: list[int] | pd.Series[Any] | pd.Index[Any]) -> go.Figure:
5+
def generate_fig(title: str, x: list[int] | pd.Series | pd.Index, y: list[int] | pd.Series | pd.Index) -> go.Figure:
66
#print('x', x)
77
#print('y', y)
88
layout = go.Layout(

0 commit comments

Comments
 (0)