fix syntax error

This commit is contained in:
Axel Kohlmeyer
2022-04-07 06:08:54 -04:00
parent 8a6e6fe523
commit f5add95083

View File

@ -122,7 +122,7 @@ try:
if 'LAMMPS_MACHINE_NAME' in os.environ:
machine=os.environ['LAMMPS_MACHINE_NAME']
lmp=lammps(name=machine)
has_dump_yaml = lmp.has_style("atom","full") && lmp.has_style("dump", "yaml")
has_dump_yaml = lmp.has_style("atom","full") and lmp.has_style("dump", "yaml")
lmp.close()
except:
pass