Skip to content

Commit

Permalink
fix type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
Han Wang committed Jan 31, 2024
1 parent 0c1913b commit 96bbb45
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions deepmd/model_format/atomic_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@
Optional,
)

import numpy as np

from .output_def import (
FittingOutputDef,
)
Expand Down Expand Up @@ -44,8 +42,8 @@ def forward_atomic(
extended_atype: T_Tensor,
nlist: T_Tensor,
mapping: Optional[T_Tensor] = None,
fparam: Optional[np.ndarray] = None,
aparam: Optional[np.ndarray] = None,
fparam: Optional[T_Tensor] = None,
aparam: Optional[T_Tensor] = None,
) -> Dict[str, T_Tensor]:
raise NotImplementedError

Expand Down

0 comments on commit 96bbb45

Please sign in to comment.