Skip to content

Commit 9d49381

Browse files
improved lint situation
1 parent 9947fe5 commit 9d49381

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/penn_chime/charts.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/usr/bin/env python
2-
from typing import Optional
31

42
from altair import Chart # type: ignore
53
import pandas as pd # type: ignore
@@ -75,7 +73,7 @@ def admitted_patients_chart(
7573
y_scale.clamp = True
7674

7775
return (
78-
alt.Chart(census)#.head(plot_projection_days))
76+
alt.Chart(census.head(plot_projection_days))
7977
.transform_fold(fold=["Hospitalized Census", "ICU Census", "Ventilated Census"])
8078
.mark_line(point=True)
8179
.encode(

0 commit comments

Comments
 (0)