From 9183c0e1c80014f5463ea84d9b23a3f1f2396b89 Mon Sep 17 00:00:00 2001 From: Karl Hammond Date: Fri, 30 Sep 2022 20:02:23 -0500 Subject: [PATCH] Removed commented-out line now that I know it works --- python/lammps/core.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python/lammps/core.py b/python/lammps/core.py index b7f3ada6a6..fb2be48feb 100644 --- a/python/lammps/core.py +++ b/python/lammps/core.py @@ -1116,7 +1116,6 @@ class lammps(object): if group: group = group.encode() if vartype is None : vartype = self.lib.lammps_extract_variable_datatype(self.lmp, name) - #vartype = LMP_VAR_EQUAL if vartype == LMP_VAR_EQUAL: self.lib.lammps_extract_variable.restype = POINTER(c_double) with ExceptionCheck(self):