File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
src/modacor/modules/base_modules Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 1- # src/modacor/dataclasses/processingdata.py
2- # -*- coding: utf-8 -*-
1+ __coding__ = "utf-8"
2+ __file__ = "src/modacor/dataclasses/processingdata.py"
33__author__ = "Brian R. Pauw"
44__copyright__ = "MoDaCor team"
55__license__ = "BSD3"
88__status__ = "Development" # "Development", "Production"
99
1010
11+ from pathlib import Path
1112from typing import Any
1213
1314import numpy as np
@@ -25,7 +26,7 @@ class PoissonUncertainties(ProcessStep):
2526 documentation = ProcessStepDescriber (
2627 calling_name = "Add Poisson Uncertainties" ,
2728 calling_id = "PoissonUncertainties" ,
28- calling_module_path = __file__ ,
29+ calling_module_path = Path ( __file__ ) ,
2930 calling_version = __version__ ,
3031 required_data_keys = ["signal" ],
3132 works_on = {"variances" : ["Poisson" ]},
You can’t perform that action at this time.
0 commit comments