From 1aaa9ca4ae0bbb64a269a31301f78b6e9709016e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eugen=20Ro=C5=BEi=C4=87?= Date: Tue, 24 May 2022 12:02:34 +0200 Subject: [PATCH] Added documentation for verbose option --- python/lammps/pylammps.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/python/lammps/pylammps.py b/python/lammps/pylammps.py index 1a64adb6ed..1fe1f2452b 100644 --- a/python/lammps/pylammps.py +++ b/python/lammps/pylammps.py @@ -449,6 +449,8 @@ class PyLammps(object): :type ptr: pointer :param comm: MPI communicator (as provided by `mpi4py `_). ``None`` means use ``MPI_COMM_WORLD`` implicitly. :type comm: MPI_Comm + :param verbose: print all LAMMPS output to stdout + :type verbose: bool :ivar lmp: instance of original LAMMPS Python interface :vartype lmp: :py:class:`lammps` @@ -985,4 +987,4 @@ class IPyLammps(PyLammps): :rtype: :py:class:`IPython.display.HTML` """ from IPython.display import HTML - return HTML("") \ No newline at end of file + return HTML("")