We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01157c1 commit e464438Copy full SHA for e464438
deepmd/pt/modifier/dp_modifier.py
@@ -27,7 +27,9 @@ def __init__(
27
super().__init__(use_cache=use_cache)
28
29
if dp_model_file_name is None and dp_model is None:
30
- raise AttributeError("`dp_model_file_name` or `dp_model` should be specified.")
+ raise AttributeError(
31
+ "`dp_model_file_name` or `dp_model` should be specified."
32
+ )
33
if dp_model_file_name is not None and dp_model is not None:
34
raise AttributeError(
35
"`dp_model_file_name` and `dp_model` cannot be used simultaneously."
0 commit comments