Skip to content

Commit 995a9cf

Browse files
committed
add utf-8 coding
1 parent 7614aa3 commit 995a9cf

File tree

13 files changed

+26
-0
lines changed

13 files changed

+26
-0
lines changed

pyrenew_flu_light/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
from checks import (
24
assert_historical_data_files_exist,
35
check_file_path_valid,

pyrenew_flu_light/checks.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
"""
24
Methods to verify pathing and existence
35
of certain files for use of pyrenew-flu-light.

pyrenew_flu_light/comp_inf.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
"""
24
The infections process component in pyrenew-flu-light.
35
"""

pyrenew_flu_light/comp_obs.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
"""
24
The observation process component in pyrenew-flu-light.
35
"""

pyrenew_flu_light/comp_tran.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
"""
24
The transmission process (Rt) component in pyrenew-flu-light.
35
"""

pyrenew_flu_light/compare.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
"""
24
Comparisons made between posterior samples.
35
"""

pyrenew_flu_light/model.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
"""
24
The re-instantiated cfaepim model, with
35
transmission, observation, and infection

pyrenew_flu_light/pad.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
from datetime import datetime, timedelta
24

35
import polars as pl

pyrenew_flu_light/plot.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
"""
24
Plotting utilities for using pyrenew-flu-light.
35
"""

pyrenew_flu_light/post.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
"""
24
Save information regarding model performance
35
and nature of model input and output.

0 commit comments

Comments
 (0)