Skip to content

Commit

Permalink
Remove unused arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
APJansen committed Nov 24, 2023
1 parent 261cabb commit d34554c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion n3fit/src/n3fit/model_gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,7 @@ def pdfNN_layer_generator(
# Normalization and sum rules
if impose_sumrule:
sumrule_layer, integrator_input = generate_msr_model_and_grid(
mode=impose_sumrule, scaler=scaler, photons=photons, replicas=num_replicas
mode=impose_sumrule, scaler=scaler, replicas=num_replicas
)
model_input["integrator_input"] = integrator_input
else:
Expand Down
1 change: 0 additions & 1 deletion n3fit/src/n3fit/msr.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ def generate_msr_model_and_grid(
nx: int = int(2e3),
scaler: Optional[Callable] = None,
replicas: int = 1,
**kwargs
) -> MetaModel:
"""
Generates a model that applies the sum rules to the PDF.
Expand Down

0 comments on commit d34554c

Please sign in to comment.