File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1- from typing import Union
1+ from typing import Optional , Union
22
33import arviz as az
44import matplotlib .pyplot as plt
@@ -565,7 +565,7 @@ def __init__(
565565 treatment_threshold : float ,
566566 model = None ,
567567 running_variable_name : str = "x" ,
568- epsilon : float = 0.001 ,
568+ epsilon : Optional [ float ] = 0.001 ,
569569 ** kwargs ,
570570 ):
571571 super ().__init__ (model = model , ** kwargs )
Original file line number Diff line number Diff line change 1+ from typing import Optional
2+
13import matplotlib .pyplot as plt
24import numpy as np
35import pandas as pd
@@ -370,7 +372,7 @@ def __init__(
370372 treatment_threshold ,
371373 model = None ,
372374 running_variable_name = "x" ,
373- epsilon : float = 0.001 ,
375+ epsilon : Optional [ float ] = 0.001 ,
374376 ** kwargs ,
375377 ):
376378 super ().__init__ (model = model , ** kwargs )
You can’t perform that action at this time.
0 commit comments