diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4596459fd23..1a24fd66889 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -55,7 +55,6 @@ jobs: split: 4 runs-on: ${{ matrix.os }} - continue-on-error: true env: PMG_MAPI_KEY: ${{ secrets.PMG_MAPI_KEY }} diff --git a/pymatgen/io/ase.py b/pymatgen/io/ase.py index 13a778d51ff..0d8cbc2d796 100644 --- a/pymatgen/io/ase.py +++ b/pymatgen/io/ase.py @@ -67,7 +67,7 @@ def get_atoms(structure: SiteCollection, **kwargs) -> Atoms: if hasattr(structure, "lattice"): pbc = True cell = structure.lattice.matrix - else: # Molecule without lattice + else: # Molecule without lattice pbc = None cell = None