We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd7f85d commit a527b08Copy full SHA for a527b08
1 file changed
src/quacc/calculators/vasp/params.py
@@ -338,14 +338,7 @@ def get_param_swaps(
338
LOGGER.info(
339
f"The following parameters were changed: {sort_dict(changed_parameters)}"
340
)
341
- if unchanged_parameters := {
342
- k: new_parameters[k]
343
- for k in new_parameters
344
- if k not in set(new_parameters) - set(user_calc_params)
345
- }:
346
- LOGGER.warning(
347
- f"The following parameters were NOT changed since the user specifically requested them: {sort_dict(unchanged_parameters)}"
348
- )
+
349
return new_parameters
350
351
0 commit comments