Skip to content

Commit

Permalink
remove non compatible typing hint
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyes319 committed Apr 30, 2024
1 parent d690063 commit 7697261
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mace/cli/fine_tuning_select.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import argparse
import logging
import typing as t
from typing import List


import ase.data
Expand Down Expand Up @@ -96,7 +96,7 @@ def parse_args() -> argparse.Namespace:


def calculate_descriptors(
atoms: t.List[ase.Atoms | ase.Atom], calc: MACECalculator, cutoffs: None | dict
atoms: List[ase.Atoms], calc: MACECalculator, cutoffs: None | dict
) -> None:
logging.info("Calculating descriptors")
for mol in atoms:
Expand Down

0 comments on commit 7697261

Please sign in to comment.