Skip to content

Commit

Permalink
(core) bugfix for a typo causing verbose=False to cause an error in…
Browse files Browse the repository at this point in the history
… KS2022 `runModels` function
  • Loading branch information
amkrajewski authored Feb 21, 2024
1 parent a27f2af commit 1db2bec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pysipfenn/core/pysipfenn.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def __init__(self,
"""Initializes the pySIPFENN Calculator object."""
if verbose:
print('********* Initializing pySIPFENN Calculator **********')
self.verbose = verbose
self.verbose = verbose
# dictionary with all model information
with resources.files('pysipfenn.modelsSIPFENN').joinpath('models.json').open('r') as f:
if verbose:
Expand Down Expand Up @@ -1144,4 +1144,4 @@ def wrapper_KS2022_dilute_generate_descriptor(args):

def wrapper_KS2022_randomSolutions_generate_descriptor(args):
"""Wraps the ``KS2022_randomSolutions.generate_descriptor`` function for parallel processing."""
return KS2022_randomSolutions.generate_descriptor(*args)
return KS2022_randomSolutions.generate_descriptor(*args)

0 comments on commit 1db2bec

Please sign in to comment.