Skip to content

Commit

Permalink
Remove faulty kwargs pass
Browse files Browse the repository at this point in the history
  • Loading branch information
hannahlanzrath authored and schmoelder committed Dec 4, 2024
1 parent bf3b2df commit 99fbb6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/create_LWE.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def configure_general_rate_model(component_system: ComponentSystem, **kwargs) ->

configure_solution_recorder(grm, **kwargs)
configure_discretization(grm, **kwargs)
configure_particles(grm, **kwargs)
configure_particles(grm)
configure_steric_mass_action(grm, component_system, **kwargs)
configure_film_diffusion(grm, component_system.n_comp)
configure_flow_direction(grm, **kwargs)
Expand Down Expand Up @@ -253,7 +253,7 @@ def configure_lumped_rate_model_with_pores(component_system: ComponentSystem, **

configure_solution_recorder(lrmp, **kwargs)
configure_discretization(lrmp, **kwargs)
configure_particles(lrmp, **kwargs)
configure_particles(lrmp)
configure_steric_mass_action(lrmp, component_system, **kwargs)
configure_film_diffusion(lrmp, component_system.n_comp)
configure_flow_direction(lrmp, **kwargs)
Expand Down

0 comments on commit 99fbb6a

Please sign in to comment.