File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 1- from typing import Optional , Union
1+ from typing import 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 : Optional [ float ] = 0.001 ,
568+ epsilon : float | None = 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-
31import matplotlib .pyplot as plt
42import numpy as np
53import pandas as pd
@@ -372,7 +370,7 @@ def __init__(
372370 treatment_threshold ,
373371 model = None ,
374372 running_variable_name = "x" ,
375- epsilon : Optional [ float ] = 0.001 ,
373+ epsilon : float | None = 0.001 ,
376374 ** kwargs ,
377375 ):
378376 super ().__init__ (model = model , ** kwargs )
You can’t perform that action at this time.
0 commit comments