From 03372b1b25a8d2eaf8091bc0bda11f12311c2bdc Mon Sep 17 00:00:00 2001 From: samblau Date: Mon, 3 May 2021 14:45:42 -0700 Subject: [PATCH] Run black --- pymatgen/io/qchem/outputs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pymatgen/io/qchem/outputs.py b/pymatgen/io/qchem/outputs.py index f20906d05e5..3d9e147f15d 100644 --- a/pymatgen/io/qchem/outputs.py +++ b/pymatgen/io/qchem/outputs.py @@ -55,7 +55,7 @@ def __init__(self, filename: str): self.data["errors"] = [] self.data["warnings"] = {} self.text = "" - with zopen(filename, mode='rt', encoding="ISO-8859-1") as f: + with zopen(filename, mode="rt", encoding="ISO-8859-1") as f: self.text = f.read() # Check if output file contains multiple output files. If so, print an error message and exit