Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
atomprobe-tc committed Sep 4, 2024
1 parent 486d84e commit d37efd6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pynxtools_em/methods/microstructure.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#
"""Standardized functionalities and visualization used when working with microstructures."""

from typing import Dict, Any, List
from typing import Dict, Any, List, Set
from ase.data import chemical_symbols
import numpy as np
from pynxtools_em.utils.pint_custom_unit_registry import ureg
Expand Down Expand Up @@ -45,7 +45,7 @@ def microstructure_to_template(
# TODO::generalize

# consistency checks
elements: set[int] = set()
elements: Set[int] = set()
ids = set()
for cryst in ms.crystal:
if not hasattr(cryst, "id"):
Expand Down

0 comments on commit d37efd6

Please sign in to comment.