remove unused import

This commit is contained in:
Axel Kohlmeyer
2022-04-09 04:02:01 -04:00
parent a71bf4cae5
commit 8ce2ce8fd4

View File

@ -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