Skip to content

Commit dda48e1

Browse files
committed
Fix eko syntax
1 parent fc9487e commit dda48e1

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/pineko/evolve.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import copy
44
import pathlib
55

6-
import eko
76
import eko.basis_rotation as br
87
import numpy as np
98
import pineappl

src/pineko/theory.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import pineappl
1515
import rich
1616
import yaml
17-
from eko import strong_coupling as sc
17+
from eko import couplings as sc
1818

1919
from . import check, configs, evolve, parser, theory_card
2020

@@ -385,7 +385,7 @@ def fk(self, name, grid_path, tcard, pdf):
385385
)
386386
# collect alpha_s
387387
# TODO: move this down to evolve.evolve_grid when output contains cards
388-
astrong = sc.StrongCoupling.from_dict(tcard)
388+
astrong = sc.Couplings.from_dict(tcard)
389389
# ocard = self.load_operator_card(name)
390390
# q2_grid = ocard["Q2grid"]
391391

0 commit comments

Comments
 (0)