From 8ce2ce8fd4b92fb2b70cfd6804731e51687923a3 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Sat, 9 Apr 2022 04:02:01 -0400 Subject: [PATCH] remove unused import --- python/lammps/formats.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/lammps/formats.py b/python/lammps/formats.py index a311867253..d34998f01c 100644 --- a/python/lammps/formats.py +++ b/python/lammps/formats.py @@ -19,9 +19,9 @@ import re, yaml try: - from yaml import CSafeLoader as Loader, CSafeDumper as Dumper + from yaml import CSafeLoader as Loader except ImportError: - from yaml import SafeLoader as Loader, SafeDumper as Dumper + from yaml import SafeLoader as Loader class LogFile: """Reads LAMMPS log files and extracts the thermo information