Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions systemnormalizer/normalizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
#

from typing import Any, Dict
from nptyping import NDArray
import ase
import numpy as np
import json
Expand Down Expand Up @@ -491,7 +490,7 @@ def springer_classification(self, section_run, atoms, space_group_number):
self.logger.info("Mismatch in Springer classification or compounds")

def prototypes(
self, section_run, atom_species: NDArray, wyckoffs: NDArray, spg_number: int
self, section_run, atom_species: np.ndarray, wyckoffs: np.ndarray, spg_number: int
) -> None:
"""Tries to match the material to an entry in the AFLOW prototype data.
If a match is found, a section_prototype is added to section_system.
Expand Down