Skip to content

Commit 2db1c92

Browse files
committed
Merge branch 'hotfix/1.0.14'
2 parents 7a753eb + aeca1dd commit 2db1c92

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

docs/source/tutorials/run.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ Here are the keys that can be recognized in ``settings.yaml``:
5050
See its `official documentation <http://numba.pydata.org/numba-doc/0.39.0/reference/jit-compilation.html#numba.vectorize>`_ for help.
5151
* ``results_folder``: The path to store all calculated values, the default value is ``./results``, which is a directory named `results` in
5252
the same folder as the ``input`` file.
53-
* ``plot_results``: Plot all thermodynamic properties in PDF format, the allowed values are ``True`` or ``False`` (default).
5453
* ``T4FV``: Temperature for :math:`F(T_i, V)` plotting. By default is ``['0', '300']``.
5554
* ``high_verbosity``: Two verbosity levels are implemented in the output file, ``True`` or ``False`` (default).
5655

examples/silicon/settings.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,4 @@ thermodynamic_properties:
2323
- Btp
2424
- Bs
2525
energy_unit: ry
26-
plot_results: False
2726
output_directory: ./results/

qha/cli/runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def run(self, namespace):
4040
'T_MIN', 'NT', 'DT', 'DT_SAMPLE',
4141
'P_MIN', 'NTV', 'DELTA_P', 'DELTA_P_SAMPLE',
4242
'volume_ratio', 'order', 'p_min_modifier',
43-
'T4FV', 'output_directory', 'plot_results', 'high_verbosity'):
43+
'T4FV', 'output_directory', 'high_verbosity'):
4444
try:
4545
user_settings.update({key: settings[key]})
4646
except KeyError:

0 commit comments

Comments
 (0)