Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
samblau committed Jun 18, 2021
1 parent 4275a59 commit c4dfb08
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pymatgen/io/qchem/outputs.py
Expand Up @@ -37,6 +37,7 @@
__author__ = "Samuel Blau, Brandon Wood, Shyam Dwaraknath, Evan Spotte-Smith"
__copyright__ = "Copyright 2018, The Materials Project"
__version__ = "0.1"
__credits__ = "Gabe Gomes"

logger = logging.getLogger(__name__)

Expand Down Expand Up @@ -1617,7 +1618,7 @@ def parse_hybridization_character(lines: List[str]) -> List[pd.DataFrame]:
# Termination conditions
if "NHO DIRECTIONALITY AND BOND BENDING" in line:
break
elif "Archival summary:" in line:
if "Archival summary:" in line:
break

# Lone pair
Expand Down Expand Up @@ -1762,7 +1763,7 @@ def parse_perturbation_energy(lines: List[str]) -> List[pd.DataFrame]:
break

# Skip conditions
if "" == line.strip():
if line.strip() == "":
continue
if "unit" in line:
continue
Expand Down

0 comments on commit c4dfb08

Please sign in to comment.