Skip to content

Commit 5d337fd

Browse files
committed
fixing file reference in documentation
1 parent 4b12b8f commit 5d337fd

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/modacor/modules/base_modules/poisson_uncertainties.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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"
@@ -8,6 +8,7 @@
88
__status__ = "Development" # "Development", "Production"
99

1010

11+
from pathlib import Path
1112
from typing import Any
1213

1314
import 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"]},

0 commit comments

Comments
 (0)