From 9b52f66a5a48427660535d2cd769967f6a29ffa4 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Sat, 15 Jun 2024 05:55:45 -0400 Subject: [PATCH] fix typos --- python/lammps/pylammps.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/lammps/pylammps.py b/python/lammps/pylammps.py index 047d02bce0..e213970c8b 100644 --- a/python/lammps/pylammps.py +++ b/python/lammps/pylammps.py @@ -797,9 +797,9 @@ class PyLammps(object): comm['nprocs'] = self.lmp.extract_setting("world_size") comm['nthreads'] = self.lmp.extract_setting("nthreads") comm['proc_grid'] = self.lmp.extract_global("proc_grid") - idx = self.lmp_extract_setting("comm_style") + idx = self.lmp.extract_setting("comm_style") comm['comm_style'] = ('brick', 'tiled')[idx] - idx = self.lmp_extract_setting("comm_style") + idx = self.lmp.extract_setting("comm_style") comm['comm_layout'] = ('uniform', 'nonuniform', 'irregular')[idx] comm['ghost_velocity'] = self.lmp_extract_setting("ghost_velocity") == 1